fxlibc/src/libc/stdio/feof.c

7 lines
60 B
C

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