Move crc32c_pad to util/crc32c.c

This commit is contained in:
Vitaliy Filippov
2025-08-10 18:03:17 +03:00
parent 4793dbe9c3
commit 1de53ef7e6
4 changed files with 30 additions and 31 deletions
+2
View File
@@ -12,6 +12,8 @@
extern "C" {
#endif
uint32_t crc32c(uint32_t crc, const void *buf, size_t len);
uint32_t crc32c_pad(uint32_t prev_crc, const void *buf, size_t len, size_t left_pad, size_t right_pad);
uint32_t crc32c_nopad(uint32_t prev_crc, const void *buf, size_t len, size_t left_pad, size_t right_pad);
#ifdef __cplusplus
};
#endif