C doesn\'t have any built-in boolean types. What\'s the best way to use them in C?
A boolean in C is an integer: zero for false and non-zero for true.
See also Boolean data type, section C, C++, Objective-C, AWK.