Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
crc11.h
1 /*
2  * crc11.h
3  * http://www.tty1.net/pycrc/faq_en.html#code-ownership
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 __CRC11_____H__
13 
14 #include <glib.h>
15 
16 #include "ws_symbol_export.h"
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
35 WS_DLL_PUBLIC
36 guint16 crc11_307_noreflect_noxor(const guint8 *data, guint64 data_len);
37 
38 #ifdef __cplusplus
39 } /* closing brace for extern "C" */
40 #endif
41 
42 #endif /*__CRC11_____H__*/