summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index 00fb067..a3f8b9e 100644
--- a/src/config.h
+++ b/src/config.h
@@ -1,8 +1,14 @@
1#ifndef CONFIG_H 1#ifndef CONFIG_H
2#define CONFIG_H 2#define CONFIG_H
3 3
4#define CLIC_VERSION "0.11"
5#define CLIC_VERSION_STR "Clic v" CLIC_VERSION
6
4#define DEBUG_DIVIDE false 7#define DEBUG_DIVIDE false
5#define DBS( s, x ) if( DEBUG_ ##s ) { x; } (void)0 8#define DEBUG_PARSE false
6 9
10#define DBS( s, x ) if( DEBUG_ ##s ) { x; } (void)0
11#define DBS_START( s ) if( DEBUG_ ##s ) { (void)0
12#define DBS_END() } (void)0
7 13
8#endif 14#endif