License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / tools / lib / api / debug-internal.h
blob80c783497d25bcc3d6e43d4d11990844653e857d
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __API_DEBUG_INTERNAL_H__
3 #define __API_DEBUG_INTERNAL_H__
5 #include "debug.h"
7 #define __pr(func, fmt, ...) \
8 do { \
9 if ((func)) \
10 (func)("libapi: " fmt, ##__VA_ARGS__); \
11 } while (0)
13 extern libapi_print_fn_t __pr_warning;
14 extern libapi_print_fn_t __pr_info;
15 extern libapi_print_fn_t __pr_debug;
17 #define pr_warning(fmt, ...) __pr(__pr_warning, fmt, ##__VA_ARGS__)
18 #define pr_info(fmt, ...) __pr(__pr_info, fmt, ##__VA_ARGS__)
19 #define pr_debug(fmt, ...) __pr(__pr_debug, fmt, ##__VA_ARGS__)
21 #endif /* __API_DEBUG_INTERNAL_H__ */