1 2 3 4 5 6 7 8 9 10
#include <stdio.h> #include <io.h> void clearerr(FILE *stream) { if (stream == NULL) return; stream->flags &= ~(_IO_ERR | _IO_EOF); }