home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / IO / REWIND.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  212 b   |  11 lines

  1. /* rewind.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <stdio.h>
  4.  
  5. void rewind (FILE *stream)
  6. {
  7.   fflush (stream);
  8.   fseek (stream, 0L, SEEK_SET);
  9.   stream->flags &= ~_IOERR;
  10. }
  11.