summaryrefslogtreecommitdiffstats
path: root/boolean.h
blob: 8d4cb6465082d693fc2db1ad5ed91aa931f64130 (plain)
1
2
3
4
5
6
7
8
9
#ifndef _BOOLEAN_H_
#define _BOOLEAN_H_

/* My favorite names for boolean values */
#define  No 0
#define  Yes	1
#define  Maybe	2				/* tri-state boolean, actually */

#endif   /* _BOOLEAN_H_ */