home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 316 / libsrc / rewind.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-20  |  170 b   |  14 lines

  1.  
  2. /* I sure hope this is right... */
  3.  
  4. #include "std-guts.h"
  5. #include "file.h"
  6.  
  7. int rewind(f)
  8. struct file * f;
  9. {
  10.   fflush(f);
  11.   return(fseek(f, 0, L_SET));
  12. }
  13.  
  14.