ferror
From cppreference.com
| Defined in header <stdio.h>
|
||
| int ferror( FILE *stream ); |
||
Checks the given stream for errors.
Contents |
Parameters
| stream | - | the file stream to check |
Return value
nonzero value if the file stream has errors occurred, 0 otherwise
Example
| This section is incomplete Reason: no example |
See also
| C++ documentation for ferror
|