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