boolean.h
Go to the documentation of this file.
1 #ifndef BOOLEANH
2 #define BOOLEANH
3 
13 typedef unsigned int boolean;
14 
15 #ifndef TRUE
16 
21  #define TRUE 1
22 #endif
23 
24 #ifndef FALSE
25 
30  #define FALSE 0
31 #endif
32 
33 #endif
unsigned int boolean
Boolean type.
Definition: boolean.h:13