Are you still using ugly methods to emulate bool
in C?
if (0) {
do_something();
}
Now you will have the TRUE bool!
if (false) {
do_something();
}
Drag bool.h
into your project and use it!
C99 defines _Bool
as boolean in C, but it's opaque and hard to understand.
LLVM Clang 7.0 seems to works as expect, other should also work.