2000-05-06 14:12:51 +00:00
|
|
|
#ifndef _BOOL_H
|
|
|
|
|
#define _BOOL_H
|
|
|
|
|
|
2000-05-13 10:43:15 +00:00
|
|
|
typedef unsigned char bool;
|
2009-08-23 10:02:28 +00:00
|
|
|
typedef int BOOL ;
|
2003-08-11 20:53:33 +00:00
|
|
|
|
2008-04-13 12:46:36 +00:00
|
|
|
#define BOOLEAN int
|
2008-04-06 19:33:38 +00:00
|
|
|
#define TRUE 1
|
2000-05-13 10:43:15 +00:00
|
|
|
#define FALSE 0
|
2008-04-06 19:33:38 +00:00
|
|
|
#define NO 0
|
|
|
|
|
#define YES 1
|
2003-08-11 20:53:33 +00:00
|
|
|
|
2000-05-06 14:12:51 +00:00
|
|
|
|
|
|
|
|
#endif
|