home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
ungetc.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
384b
|
19 lines
/*
** ungetc.c by fas 8/30/84
*/
#include <stdio.h>
#define FCBSIZE 36
#define UNGOT 5
ungetc(c,fd) char c, *fd;{
if(fd[FCBSIZE+UNGOT] != EOF) return(EOF);
fd[FCBSIZE+UNGOT] = c;
return(c);
}