1 2 3 4 5 6 7 8 9 10
#include <stdio.h> #include <io.h> int feof(FILE *stream) { if (!stream) return 0; return stream->eof; }