Wireshark  4.3.0
The Wireshark network protocol analyzer
crc10.h
Go to the documentation of this file.
1 
10 #ifndef __CRC10_H__
11 #define __CRC10_H__
12 
13 #include <wireshark.h>
14 
15 /* Update the data block's CRC-10 remainder one byte at a time */
16 WS_DLL_PUBLIC uint16_t update_crc10_by_bytes(uint16_t crc10, const uint8_t *data_blk_ptr, int data_blk_size);
17 
18 #endif /* __CRC10_H__ */