home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource3
/
145_01
/
stdio.h
< prev
next >
Wrap
Text File
|
1979-12-31
|
384b
|
19 lines
/* STDIO.H Include file for C88 input/output. */
/* a 'FILE' is simply an integer is this implimentation */
typedef int FILE;
/* Standard input, standard output and standard error. */
#define stdin 0
#define stdout 1
#define stderr 2
#define NULL 0
#define TRUE 1
#define FALSE 0
#define EOF (-1)
#define ERR (-1)
#define FERR 0 /* File open error */