forked from KolibriOS/kolibrios
ffca41d7f9
- Added ungetc, tollower and toupper to export - Fixed ungetc emu - Fixed file io functions - Update file_io test git-svn-id: svn://kolibrios.org@8730 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
163 B
C
12 lines
163 B
C
#include <stdio.h>
|
|
|
|
int fgetc(FILE* stream)
|
|
{
|
|
int c=0;
|
|
if(fread(&c, sizeof(char), 1, stream)==1){
|
|
return c;
|
|
}else{
|
|
return EOF;
|
|
}
|
|
}
|