home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 7
/
FreshFishVol7.bin
/
bbs
/
gnu
/
libg++-2.6-fsf.lha
/
libg++-2.6
/
libio
/
stdio
/
fgetc.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-04
|
115b
|
11 lines
#include "libioP.h"
#include "stdio.h"
int
fgetc(fp)
FILE *fp;
{
COERCE_FILE(fp);
return _IO_getc(fp);
}