1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef BOOL_H #define BOOL_H #include <stdbool.h> #ifndef TRUE #define TRUE true #endif #ifndef FALSE #define FALSE false #endif #endif