home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
alde_c
/
misc
/
util
/
lex
/
stdio.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1983-08-03
|
384 b
|
18 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)