Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
crc10.h
Go to the documentation of this file.
1
10#ifndef __CRC10_H__
11#define __CRC10_H__
12
13#include <wireshark.h>
14
23WS_DLL_PUBLIC uint16_t update_crc10_by_bytes(uint16_t crc10, const uint8_t *data_blk_ptr, int data_blk_size);
24
25#endif /* __CRC10_H__ */
WS_DLL_PUBLIC uint16_t update_crc10_by_bytes(uint16_t crc10, const uint8_t *data_blk_ptr, int data_blk_size)
Update the data block's CRC-10 remainder one byte at a time.
Definition crc10.c:59