/* * feof.c - test if eof on a stream occurred */ /* $Id$ */ #include int(feof)(FILE* stream) { return feof(stream); }