home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
library
/
dos
/
communic
/
cppcom
/
bool.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-02-26
|
215 b
|
15 lines
/* boolean enum type definitions */
#ifndef BOOL_H
#define BOOL_H 1
enum boolean { false, true };
typedef boolean bool;
typedef boolean Bool;
typedef boolean Boolean;
#endif
/* end file bool.h */