forked from KolibriOS/kolibrios
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;
|
||
|
}
|