aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/api/debug-internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lib/api/debug-internal.h')
-rw-r--r--tools/lib/api/debug-internal.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/lib/api/debug-internal.h b/tools/lib/api/debug-internal.h
new file mode 100644
index 000000000000..188f7880eafe
--- /dev/null
+++ b/tools/lib/api/debug-internal.h
@@ -0,0 +1,20 @@
1#ifndef __API_DEBUG_INTERNAL_H__
2#define __API_DEBUG_INTERNAL_H__
3
4#include "debug.h"
5
6#define __pr(func, fmt, ...) \
7do { \
8 if ((func)) \
9 (func)("libapi: " fmt, ##__VA_ARGS__); \
10} while (0)
11
12extern libapi_print_fn_t __pr_warning;
13extern libapi_print_fn_t __pr_info;
14extern libapi_print_fn_t __pr_debug;
15
16#define pr_warning(fmt, ...) __pr(__pr_warning, fmt, ##__VA_ARGS__)
17#define pr_info(fmt, ...) __pr(__pr_info, fmt, ##__VA_ARGS__)
18#define pr_debug(fmt, ...) __pr(__pr_debug, fmt, ##__VA_ARGS__)
19
20#endif /* __API_DEBUG_INTERNAL_H__ */