mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 22:27:47 -04: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 */
|
||
|
|
|