home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
compiler
/
small_c
/
byte_sc
/
rewind.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1987-10-04
|
256 b
|
9 lines
#define NOCCARGC /* no argument count passing */
/*
** Rewind file to beginning.
*/
rewind(fd) int fd; {
return(seek(fd, 0, 0, 0));
}