blob: 7d5037143975e4882a177c5beef846e7352b9893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifdef __cplusplus
extern "C" {
#endif
extern int in_cksum(void *, int);
#define FLETCHER_CHECKSUM_VALIDATE 0xffff
extern uint16_t fletcher_checksum(uint8_t *, const size_t len,
const uint16_t offset);
#ifdef __cplusplus
}
#endif
|