C doesn\'t have any built-in boolean types. What\'s the best way to use them in C?
This is what I use:
enum {false, true}; typedef _Bool bool;
_Bool is a built in type in C. It's intended for boolean values.
_Bool