xsum_output.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * xxhsum - Command line interface for xxhash algorithms
  3. * Copyright (C) 2013-2020 Yann Collet
  4. *
  5. * GPL v2 License
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with this program; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  20. *
  21. * You can contact the author at:
  22. * - xxHash homepage: https://www.xxhash.com
  23. * - xxHash source repository: https://github.com/Cyan4973/xxHash
  24. */
  25. #include "xsum_output.h"
  26. #include "xsum_os_specific.h"
  27. #include <stdio.h>
  28. int XSUM_logLevel = 2;
  29. XSUM_ATTRIBUTE((__format__(__printf__, 1, 2)))
  30. XSUM_API int XSUM_log(const char* format, ...)
  31. {
  32. int ret;
  33. va_list ap;
  34. va_start(ap, format);
  35. ret = XSUM_vfprintf(stderr, format, ap);
  36. va_end(ap);
  37. return ret;
  38. }
  39. XSUM_ATTRIBUTE((__format__(__printf__, 1, 2)))
  40. XSUM_API int XSUM_output(const char* format, ...)
  41. {
  42. int ret;
  43. va_list ap;
  44. va_start(ap, format);
  45. ret = XSUM_vfprintf(stdout, format, ap);
  46. va_end(ap);
  47. return ret;
  48. }
  49. XSUM_ATTRIBUTE((__format__(__printf__, 2, 3)))
  50. XSUM_API int XSUM_logVerbose(int minLevel, const char* format, ...)
  51. {
  52. if (XSUM_logLevel >= minLevel) {
  53. int ret;
  54. va_list ap;
  55. va_start(ap, format);
  56. ret = XSUM_vfprintf(stderr, format, ap);
  57. va_end(ap);
  58. return ret;
  59. }
  60. return 0;
  61. }