#ifndef CONFIG_H #define CONFIG_H #define CLIC_VERSION "0.13" #define CLIC_VERSION_STR "Clic v" CLIC_VERSION #define DEBUG_DIVIDE false #define DEBUG_PARSE false #define DEBUG_ADD false #define DBS( s, x ) if( DEBUG_ ##s ) { x; } (void)0 #define DBS_START( s ) if( DEBUG_ ##s ) { (void)0 #define DBS_END() } (void)0 #endif