kolibrios/programs/develop/metcc/trunk/libc/file/feof.c
andrew_programmer e5c041df96 Update Kolibri version of libC library(for usage in TinyC).
Correction of various mistakes in functions of work with files.
For work with files 70 function is used.
Functions for work with memory are changed for use of the new manager of memory. 

git-svn-id: svn://kolibrios.org@610 a494cfbc-eb01-0410-851d-a64ba20cac60
2007-08-24 19:49:07 +00:00

5 lines
87 B
C

#include <stdio.h>
int feof(FILE* file)
{
return file->filepos>=file->filesize;
}