/* gendefs.h */ #ifndef _GEN_DEFS #define _GEN_DEFS /* general definitions */ #define SUCCESS 0 #define FAILURE -1 #define TRUE 1 #define FALSE 0 #define MATCH 0 /* typedef to bool for non-c++ */ typedef unsigned char BOOL; #endif