clearerr
From cppreference.com
| Defined in header <stdio.h>
|
||
| void clearerr( FILE *stream ); |
||
Resets the error flags and the EOF indicator for the given file stream.
Contents |
Parameters
| stream | - | the file to reset the error flags for |
Return value
(none)
Example
| This section is incomplete Reason: no example |
See also
| C++ documentation for clearerr
|