mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-18 21:02:34 +03:00
12 lines
226 B
C
12 lines
226 B
C
|
#include "stdio.h"
|
||
|
int ungetc(int c,FILE* file)
|
||
|
{
|
||
|
if (c==EOF)
|
||
|
return EOF;
|
||
|
if (file->filepos<=0 || file->filepos>file->filesize)
|
||
|
return EOF;
|
||
|
file->filepos--;
|
||
|
file->buffer[file->filepos]=(char)c;
|
||
|
return c;
|
||
|
}
|