forked from KolibriOS/kolibrios
51d395d0cc
git-svn-id: svn://kolibrios.org@145 a494cfbc-eb01-0410-851d-a64ba20cac60
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;
|
|
}
|