home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------------
- * filename - clearerr.c
- *
- * function(s)
- * clearerr - resets error indication
- *-----------------------------------------------------------------------*/
-
- /*
- * C/C++ Run Time Library - Version 5.0
- *
- * Copyright (c) 1987, 1992 by Borland International
- * All Rights Reserved.
- *
- */
-
-
- #include <stdio.h>
-
- /*---------------------------------------------------------------------------*
-
- Name clearerr - resets error indication
-
- Usage #include <stdio.h>
- void clearerr(FILE *stream);
-
- Prototype in stdio.h
-
- Description clearerr sets the stream's error and end-of-file indicators
- to 0.
-
- Return value nothing
-
- *---------------------------------------------------------------------------*/
- void clearerr (FILE *fp)
- {
- fp->flags &= ~(_F_ERR | _F_EOF);
- }
-
-