From 317c0644ccf108aa23ef3fd8358bd66c2840bfc0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 15:40:54 +0200 Subject: Adding upstream version 5:7.2.4. Signed-off-by: Daniel Baumann --- src/crc64.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/crc64.h (limited to 'src/crc64.h') diff --git a/src/crc64.h b/src/crc64.h new file mode 100644 index 0000000..e0fccd9 --- /dev/null +++ b/src/crc64.h @@ -0,0 +1,13 @@ +#ifndef CRC64_H +#define CRC64_H + +#include + +void crc64_init(void); +uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l); + +#ifdef REDIS_TEST +int crc64Test(int argc, char *argv[], int flags); +#endif + +#endif -- cgit v1.2.3