Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
bitswap.h
Go to the documentation of this file.
1
11#ifndef __BITSWAP_H__
12#define __BITSWAP_H__
13
14#include <wireshark.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19
29WS_DLL_PUBLIC void bitswap_buf_inplace(uint8_t *buf, size_t len);
30
31#ifdef __cplusplus
32}
33#endif /* __cplusplus */
34
35#endif /* bitswap.h */
WS_DLL_PUBLIC void bitswap_buf_inplace(uint8_t *buf, size_t len)
Reverse the bit order of each byte in a buffer, in-place.
Definition bitswap.c:52