initial commit
This commit is contained in:
16
third_party/crc16/crc16.h
vendored
Executable file
16
third_party/crc16/crc16.h
vendored
Executable file
@@ -0,0 +1,16 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user