forked from KolibriOS/kolibrios
5 lines
87 B
C
5 lines
87 B
C
|
#include <stdio.h>
|
||
|
int feof(FILE* file)
|
||
|
{
|
||
|
return file->filepos>=file->filesize;
|
||
|
}
|