feof.c (83B)
1 #include <stdio.h> 2 #undef feof 3 4 int 5 feof(FILE *fp) 6 { 7 return fp->flags & _IOEOF; 8 }