fusion/third_party/crc16/crc16.h

17 lines
252 B
C
Raw Permalink Normal View History

2025-08-05 07:53:44 +00:00
#ifndef _CRC_CRC16_H
#define _CRC_CRC16_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include <stddef.h>
#include <stdint.h>
uint16_t crc16(const unsigned char *buf, size_t len);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif