initial commit

This commit is contained in:
2025-08-05 15:53:44 +08:00
commit 09dc02ae52
553 changed files with 137665 additions and 0 deletions

16
third_party/crc16/crc16.h vendored Executable file
View 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