blob: a3f8b9e74b8095220201cdaadf8a593da3129e6a (
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.11"
#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
|