home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
rewind.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
384b
|
15 lines
/*
** rewind.c by F. A. Scacchitti 9/11/84
*/
#define NOCCARGC
#include <stdio.h>
rewind(fd) int fd; {
return(cseek(fd, 0, 0));
}