/* boolean.h */ #ifndef _BOOLEAN_H_ #define _BOOLEAN_H_ #ifdef __cplusplus extern "C" { #endif #ifndef FALSE #define FALSE 0 #endif /*FALSE*/ #ifndef TRUE #define TRUE 1 #endif /*TRUE*/ #ifdef __cplusplus } #endif #endif /*_BOOLEAN_H_*/