5
mirror of https://gitlab.com/zephray/glider.git synced 2025-12-31 13:07:10 +00:00
glider/fw/User/crc16.h
2025-04-15 17:28:05 +08:00

15 lines
219 B
C

#ifndef _CRC_CRC16_H
#define _CRC_CRC16_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
uint16_t crc16(const char *buf, int len);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif