kolibrios/contrib/kolibri-libc/source/stdio/fgetc.c

12 lines
162 B
C
Raw Normal View History

#include <stdio.h>
int fgetc(FILE* stream)
{
int c, rc;
rc = fread(&c, sizeof(char), 1, stream);
if(rc<1){
return EOF;
}
return c;
}