Subversion Repositories Kolibri OS

Rev

Rev 647 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
647 andrew_pro 1
#include 
2
int feof(FILE* file)
3
{
6433 siemargl 4
    if(!file)
5
    {
6
        errno = E_INVALIDPTR;
7
        return EOF;
8
    }
9
 
10
    return file->filepos>=file->filesize;
11
}