debug-internal.h 546 B

123456789101112131415161718192021
  1. #ifndef __API_DEBUG_INTERNAL_H__
  2. #define __API_DEBUG_INTERNAL_H__
  3. #include "debug.h"
  4. #define __pr(func, fmt, ...) \
  5. do { \
  6. if ((func)) \
  7. (func)("libapi: " fmt, ##__VA_ARGS__); \
  8. } while (0)
  9. extern libapi_print_fn_t __pr_warning;
  10. extern libapi_print_fn_t __pr_info;
  11. extern libapi_print_fn_t __pr_debug;
  12. #define pr_warning(fmt, ...) __pr(__pr_warning, fmt, ##__VA_ARGS__)
  13. #define pr_info(fmt, ...) __pr(__pr_info, fmt, ##__VA_ARGS__)
  14. #define pr_debug(fmt, ...) __pr(__pr_debug, fmt, ##__VA_ARGS__)
  15. #endif /* __API_DEBUG_INTERNAL_H__ */