forked from KolibriOS/kolibrios
524cab3cd8
git-svn-id: svn://kolibrios.org@7184 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
141 B
C
12 lines
141 B
C
#include <stdio.h>
|
|
int fgetc(FILE* file)
|
|
{
|
|
int c = 0, rc;
|
|
|
|
rc = fread(&c, 1, 1, file);
|
|
|
|
if (rc < 1) return EOF;
|
|
|
|
return c;
|
|
}
|