| 12345678910111213141516171819202122232425262728293031323334 |
- /**
- * config.h for jsonstroller
- *
- * Author: isundil <isundill@gmail.com>
- **/
- /**
- * Max history to keep in error messages
- **/
- #ifndef ERROR_HISTORY_LEN
- # define ERROR_HISTORY_LEN 45
- #endif //ERROR_HISTORY_LEN
- /**
- * Indent increment (in spaces)
- **/
- #ifndef INDENT_LEVEL
- # define INDENT_LEVEL 4
- #endif //INDENT_LEVEL
- /**
- * Version number
- **/
- #ifndef VERSION
- # define VERSION "1.0RC1"
- #endif //VERSION
- #ifndef VERSIONDATE
- # define VERSIONDATE "Jul 31 2016"
- #endif //VERSIONDATE
- #ifndef STROLL_PROGNAME
- # define STROLL_PROGNAME "jsonstroll"
- #endif //STROLL_PROGNAME
|