1 2 3 4 5 6 7 8 9 10
#ifndef INC_LIB_BOOL_H #define INC_LIB_BOOL_H #include <stdint.h> #define bool_t uint8_t #define FALSE 0 #define TRUE 1 #endif