diff options
| author | Mike Buland <mike@xagasoft.com> | 2014-11-28 13:45:37 -0700 |
|---|---|---|
| committer | Mike Buland <mike@xagasoft.com> | 2014-11-28 13:45:37 -0700 |
| commit | 9f7cbe624a91008a4cbe47c7b369c5e3f96a4eff (patch) | |
| tree | 561bd5cb20d17c0c5e5289763d140e42cdde8a3f /src/config.h | |
| parent | 02573826558bd44f0ec3ed542964be0096d5e389 (diff) | |
| download | clic-0.11.tar.gz clic-0.11.tar.bz2 clic-0.11.tar.xz clic-0.11.zip | |
Division fixes, better config, more tests.0.11
Other minor fixes and options such as --version being added.
Diffstat (limited to '')
| -rw-r--r-- | src/config.h | 8 |
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 |
