home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 3
/
TheARMClub_PDCD3.iso
/
hensa
/
graphics
/
a090_1
/
h
/
bool
next >
Wrap
Text File
|
1991-08-29
|
162b
|
10 lines
/**** bool.h ****/
/* Defines 'BOOL' as the boolean type - values TRUE and FALSE.
*/
#ifndef BOOL
#define BOOL int
#define FALSE 0
#define TRUE 1
#endif