ferror
extern int ferror(FILE *stream);
extern int ferror(FILE *stream);
return ferror(m_pFile) ? ERROR_IO_READ : 0;
return (ferror(m_pFile) || (*pBytesWritten != nBytesToWrite)) ? ERROR_IO_WRITE : 0;
if (ferror(inputFile)) {
if (ferror (InputFile))
if (ferror(stdin) != 0)
return ferror(stdin);
else if (ferror(file)) \
else if (c == EOF && ferror(instr))
if (ferror(instr)) { /* resume after OOB */
else if (c == EOF && ferror(instr))
if (c == EOF && ferror(instr)) { /* resume after OOB */
if (ferror(stdout)){
if (ferror(fin)) {
if (ferror(dout))
if (ferror(dout))
else if (ferror(dout))
if (feof(stdin) || ferror(stdin)) {
if (ferror (file)) {
while (!feof (from) && !ferror (from))
weak_alias (_IO_ferror, ferror)
extern int ferror (FILE *__stream) __THROW __wur;
panic(ferror(cOut), "getline cOut");
panic(ferror(cErr), "getline cErr");
int err = ferror(in);