lnk commit front code

This commit is contained in:
lnk
2025-01-16 16:17:01 +08:00
commit 1776a2bf0d
587 changed files with 257079 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef LIBAOS_CRC_H
#define LIBAOS_CRC_H
#include "aos_define.h"
AOS_CPP_START
uint64_t aos_crc64(uint64_t crc, void *buf, size_t len);
uint64_t aos_crc64_combine(uint64_t crc1, uint64_t crc2, uintmax_t len2);
AOS_CPP_END
#endif