6 lines
73 B
C
Raw Normal View History

#include <stdio.h>
int feof(FILE *stream) {
return stream->eof;
}