forked from KolibriOS/kolibrios
ace23ebbe2
git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
174 B
C
12 lines
174 B
C
#include <stdio.h>
|
|
int feof(FILE* file)
|
|
{
|
|
if(!file)
|
|
{
|
|
errno = E_INVALIDPTR;
|
|
return EOF;
|
|
}
|
|
|
|
return file->filepos>=file->filesize;
|
|
}
|