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 >
Text File  |  1979-12-31  |  384b  |  15 lines

  1.  
  2. /*
  3. ** rewind.c    by    F. A. Scacchitti    9/11/84
  4. */
  5.  
  6. #define NOCCARGC
  7.  
  8. #include <stdio.h>
  9.  
  10. rewind(fd) int fd; {
  11.  
  12. return(cseek(fd, 0, 0));
  13.  
  14. }
  15.