| 1234567891011121314151617181920 |
- /**
- * 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
|