1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-25 17:29:50 +00:00

initial check-in

git-svn-id: svn://svn.cc65.org/cc65/trunk@274 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg 2000-08-11 21:51:03 +00:00
parent 43344ef154
commit d6a3b84948

16
libsrc/common/rewind.c Normal file
View File

@ -0,0 +1,16 @@
/*
* rewind.c
*
* Christian Groessler, 07-Aug-2000
*/
#include <stdio.h>
void rewind(FILE* f)
{
fseek(f, 0L, SEEK_SET);
clearerr(f);
}