uzlib_conf.h 562 B

12345678910111213141516171819202122
  1. /*
  2. * uzlib - tiny deflate/inflate library (deflate, gzip, zlib)
  3. *
  4. * Copyright (c) 2014-2018 by Paul Sokolovsky
  5. */
  6. #ifndef UZLIB_CONF_H_INCLUDED
  7. #define UZLIB_CONF_H_INCLUDED
  8. #ifndef UZLIB_CONF_DEBUG_LOG
  9. /* Debug logging level 0, 1, 2, etc. */
  10. #define UZLIB_CONF_DEBUG_LOG 0
  11. #endif
  12. #ifndef UZLIB_CONF_PARANOID_CHECKS
  13. /* Perform extra checks on the input stream, even if they aren't proven
  14. to be strictly required (== lack of them wasn't proven to lead to
  15. crashes). */
  16. #define UZLIB_CONF_PARANOID_CHECKS 0
  17. #endif
  18. #endif /* UZLIB_CONF_H_INCLUDED */