mirror of
https://git.FreeBSD.org/src.git
synced 2025-02-06 18:29:47 +00:00
6 lines
125 B
C
6 lines
125 B
C
![]() |
/* My favorite names for boolean values */
|
||
|
#define No 0
|
||
|
#define Yes 1
|
||
|
#define Maybe 2 /* tri-state boolean, actually */
|
||
|
|