mirror of
https://gitlab.com/zephray/glider.git
synced 2025-12-31 13:07:10 +00:00
15 lines
219 B
C
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
|