1 /*
2  * Wrappers for printf like functions.
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 2007 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef __WS_PRINTF_H__
12 #define __WS_PRINTF_H__
13 
14 /* This is intended to fool checkAPIs.pl for places that have "debugging"
15 (using printf) usually wrapped in an #ifdef, but checkAPIs.pl isn't smart
16 enough to figure that out.
17 Dissectors should still try to use proto_tree_add_debug_text when the
18 debugging context has a protocol tree.
19 */
20 #define ws_debug_printf     printf
21 
22 #endif /* __WS_PRINTF_H__ */
23