home *** CD-ROM | disk | FTP | other *** search
- /*-----------------------------------------------------------------------*
- * filename - rewind.c
- *
- * function(s)
- * rewind - repositions a stream
- *-----------------------------------------------------------------------*/
-
- /*
- * C/C++ Run Time Library - Version 5.0
- *
- * Copyright (c) 1987, 1992 by Borland International
- * All Rights Reserved.
- *
- */
-
-
- #include <stdio.h>
-
- /*-----------------------------------------------------------------------*
-
- Name rewind - repositions a stream
-
- Usage void rewind (FILE *fp);
-
- Prototype in stdio.h
-
- Description resets the file position to the beginning of file. rewind
- also clears the end-of-file and error indicators.
-
- Return value success : 0
- failure : non-zero
-
- *------------------------------------------------------------------------*/
- void _FARFUNC rewind (FILE _FAR *fp)
- {
- if (fseek (fp, 0L, SEEK_SET) == 0)
- fp->flags &= ~_F_ERR;
- }
-
-