C doesn\'t have any built-in boolean types. What\'s the best way to use them in C?
Anything nonzero is evaluated to true in boolean operations, so you could just
#define TRUE 1 #define FALSE 0
and use the constants.