config.h 577 B

12345678910111213141516171819202122232425262728293031323334
  1. /**
  2. * config.h for jsonstroller
  3. *
  4. * Author: isundil <isundill@gmail.com>
  5. **/
  6. /**
  7. * Max history to keep in error messages
  8. **/
  9. #ifndef ERROR_HISTORY_LEN
  10. # define ERROR_HISTORY_LEN 45
  11. #endif //ERROR_HISTORY_LEN
  12. /**
  13. * Indent increment (in spaces)
  14. **/
  15. #ifndef INDENT_LEVEL
  16. # define INDENT_LEVEL 4
  17. #endif //INDENT_LEVEL
  18. /**
  19. * Version number
  20. **/
  21. #ifndef VERSION
  22. # define VERSION "1.0RC1"
  23. #endif //VERSION
  24. #ifndef VERSIONDATE
  25. # define VERSIONDATE "Jul 31 2016"
  26. #endif //VERSIONDATE
  27. #ifndef STROLL_PROGNAME
  28. # define STROLL_PROGNAME "jsonstroll"
  29. #endif //STROLL_PROGNAME