C++ Programming/Code/Standard C Library/Functions/clearerr
Appearance
clearerr
[edit | edit source]Syntax |
#include <cstdio>
void clearerr( FILE *stream );
|
The clearerr function resets the error flags and EOF indicator for the given stream. If an error occurs, you can use perror()
or strerror()
to figure out which error actually occurred, or read the error from the global variable errno
.