/* boolean.h */ #ifndef _RPK_BOOLEAN_H_ #define _RPK_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 /*_RPK_BOOLEAN_H_*/