aos_crc64.h 235 B

12345678910111213
  1. #ifndef LIBAOS_CRC_H
  2. #define LIBAOS_CRC_H
  3. #include "aos_define.h"
  4. AOS_CPP_START
  5. uint64_t aos_crc64(uint64_t crc, void *buf, size_t len);
  6. uint64_t aos_crc64_combine(uint64_t crc1, uint64_t crc2, uintmax_t len2);
  7. AOS_CPP_END
  8. #endif