home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
compiler
/
small_c
/
byte_sc
/
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
|
1987-10-03
|
384 b
|
17 lines
/*
** STDIO.H -- Standard Small-C Definitions
*/
#define stdin 0
#define stdout 1
#define stderr 2
#define ERR (-2)
#define EOF (-1)
#define YES 1
#define NO 0
#define NULL 0
#define CR 13
#define LF 10
#define BELL 7
#define SPACE ' '
#define NEWLINE LF