C doesn\'t have any built-in boolean types. What\'s the best way to use them in C?
C has a boolean type: bool (at least for the last 10(!) years)
Include stdbool.h and true/false will work as expected.