// Library header file: boolean.h #ifndef BOOL_H #undef TRUE #undef FALSE const int TRUE = 1; const int FALSE = 0; typedef int boolean; #define BOOL_H #endif