mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-19 05:12:45 +03:00
12 lines
255 B
C
12 lines
255 B
C
|
#include "stdio.h"
|
||
|
int fgetc(FILE* file)
|
||
|
{
|
||
|
if ((file->mode & 3!=FILE_OPEN_READ) && (file->mode & FILE_OPEN_PLUS==0))
|
||
|
return EOF;
|
||
|
if (file->filepos>=file->filesize)
|
||
|
return EOF;
|
||
|
else
|
||
|
{
|
||
|
return (int)file->buffer[file->filepos++];
|
||
|
}
|
||
|
}
|