xml2c.h 241 B

12345678910
  1. #ifndef _lub_xml2c_h
  2. #define _lub_xml2c_h
  3. #define XML2C_NULL ""
  4. #define XML2C_STR(str) ( str ? str : XML2C_NULL )
  5. #define XML2C_BOOL(val) ( val ? "BOOL_TRUE" : "BOOL_FALSE" )
  6. const char *xml2c_enum(int value, const char *array[]);
  7. #endif