home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ACS 1998 #4
/
amigaacscoverdisc1998-041998.iso
/
utilities
/
shareware
/
dev
/
vbcc
/
machines
/
amiga68k
/
libsrc
/
stdio
/
rewind.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-12-30
|
103 b
|
10 lines
#include <stdio.h>
#undef rewind
void rewind(FILE *f)
{
fseek(f,0L,SEEK_SET);
clearerr(f);
}