blob: f55be13212d8d21ed19c393a4e570de425bf1ec6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef CONFIG_H
#define CONFIG_H
#define CLIC_VERSION "0.12"
#define CLIC_VERSION_STR "Clic v" CLIC_VERSION
#define DEBUG_DIVIDE false
#define DEBUG_PARSE 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
|