summaryrefslogtreecommitdiffstats
path: root/boolean.h
blob: 9c4367b32f5b4361e2b506e00d6c092bdb3233af (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_ */