Subversion Repositories Kolibri OS

Rev

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

  1. #include <stdio.h>
  2. int fgetc(FILE* file)
  3. {
  4.         int c = 0, rc;
  5.        
  6.         rc = fread(&c, 1, 1, file);
  7.  
  8.         if (rc < 1) return EOF;
  9.  
  10.         return c;
  11. }
  12.