Closed egmontkob-work closed 2 years ago
+1
IMO this is already implemented in current master (aa37802).
rbalint@yogi:~/projects/firebuild$ git grep FALSE
rbalint@yogi:~/projects/firebuild$ git grep TRUE
cmake/modules/FindLibConfig.cmake: SET(LIBCONFIG_FOUND TRUE)
cmake/modules/FindLibConfig.cmake: SET(LIBCONFIGPP_FOUND TRUE)
Even in plain C, let's use
bool
,true
,false
where that's the meaning.#include <stdbool.h>
seems to be the official way to define them.