Support xxhash 32-bit checksums (data_csum_type=xxh3_32)

This commit is contained in:
Vitaliy Filippov
2026-04-04 19:01:49 +03:00
parent 49db218f73
commit 2be8dfbb48
19 changed files with 7672 additions and 48 deletions
+1
View File
@@ -16,6 +16,7 @@ extern "C" {
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);
extern uint8_t zero_page[4096];
#ifdef __cplusplus
};
#endif