Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
wmem_map_int.h
1 /* wmem_map_int.h
2  * Definitions for the Wireshark Memory Manager Hash Map Internals
3  * Copyright 2014, 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_MAP_INT_H__
13 #define __WMEM_MAP_INT_H__
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif /* __cplusplus */
18 
19 WS_DLL_LOCAL
20 void
21 wmem_init_hashing(void);
22 
23 #ifdef __cplusplus
24 }
25 #endif /* __cplusplus */
26 
27 #endif /* __WMEM_MAP_INT_H__ */
28 
29 /*
30  * Editor modelines - http://www.wireshark.org/tools/modelines.html
31  *
32  * Local variables:
33  * c-basic-offset: 4
34  * tab-width: 8
35  * indent-tabs-mode: nil
36  * End:
37  *
38  * vi: set shiftwidth=4 tabstop=8 expandtab:
39  * :indentSize=4:tabSize=8:noTabs=true:
40  */