home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Programa / CCDL122.ZIP / CLIBS / IO / FSETPOS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-24  |  184 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. int fsetpos(FILE *stream, const fpos_t *currentpos)
  4. {
  5.     if (stream->token == FILTOK)
  6.         stream->flags &= ~_F_EOF;
  7.     return fseek(stream,*currentpos,SEEK_SET);
  8. }