Subversion Repositories Kolibri OS

Rev

Rev 647 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include <stdio.h>
  2. int feof(FILE* file)
  3. {
  4.     if(!file)
  5.     {
  6.         errno = E_INVALIDPTR;
  7.         return EOF;
  8.     }
  9.  
  10.     return file->filepos>=file->filesize;
  11. }
  12.