Revert "UNUSED enc_key_id_{equal,hash}"
[wireshark-sm.git] / wsutil / bitswap.h
blob7e8366094585924f4fc2a873c3f5e4976522fb34
1 /** @file
2 * Macro to bitswap a byte by looking it up in a table
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <gerald@wireshark.org>
6 * Copyright 1998 Gerald Combs
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
11 #ifndef __BITSWAP_H__
12 #define __BITSWAP_H__
14 #include <wireshark.h>
16 #ifdef __cplusplus
17 extern "C" {
18 #endif /* __cplusplus */
20 WS_DLL_PUBLIC void bitswap_buf_inplace(uint8_t *buf, size_t len);
22 #ifdef __cplusplus
24 #endif /* __cplusplus */
26 #endif /* bitswap.h */