home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Club Elmshorn Atari PD
/
CCE_PD.iso
/
pc
/
0400
/
CCE_0483.ZIP
/
CCE_0483.PD
/
LZH_SOUR.CE
/
GOODPUTC.H
< prev
next >
Wrap
Text File
|
1992-04-01
|
130b
|
10 lines
int file_putc(char c, FILE *f)
{
putc(c,f);
if (ferror(f)) return EOF;
return 0;
}
#define putc file_putc