Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
wmem.h
1 /* wmem.h
2  * Definitions for the Wireshark Memory Manager
3  * Copyright 2012, Evan Huus <eapache@gmail.com>
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #ifndef __WMEM_H__
13 #define __WMEM_H__
14 
15 #include "wmem_array.h"
16 #include "wmem_core.h"
17 #include "wmem_list.h"
18 #include "wmem_map.h"
19 #include "wmem_miscutl.h"
20 #include "wmem_queue.h"
21 #include "wmem_scopes.h"
22 #include "wmem_stack.h"
23 #include "wmem_strbuf.h"
24 #include "wmem_strutl.h"
25 #include "wmem_tree.h"
26 #include "wmem_interval_tree.h"
27 #include "wmem_user_cb.h"
28 
29 #endif /* __WMEM_H__ */
30 
31 /*
32  * Editor modelines - http://www.wireshark.org/tools/modelines.html
33  *
34  * Local variables:
35  * c-basic-offset: 4
36  * tab-width: 8
37  * indent-tabs-mode: nil
38  * End:
39  *
40  * vi: set shiftwidth=4 tabstop=8 expandtab:
41  * :indentSize=4:tabSize=8:noTabs=true:
42  */