home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Acorn User 10
/
AU_CD10.iso
/
Updates
/
DigitalCD
/
!DigitalCD
/
Copy
/
PowerBars
/
h
/
bool
next >
Wrap
Text File
|
1997-10-09
|
159b
|
13 lines
#ifndef __bool__H
#define __bool__H
typedef int bool;
#define true ((bool) 1)
#define false ((bool) 0)
#ifndef NULL
#define NULL ((void*) 0)
#endif
#endif