From 5d8dfe892a2ea89f706ee140c3bdcfd89fe03fda Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 21 Jan 2026 22:40:55 +0100 Subject: Add Redis source code for testing --- examples/redis-unstable/src/crc64.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 examples/redis-unstable/src/crc64.h (limited to 'examples/redis-unstable/src/crc64.h') diff --git a/examples/redis-unstable/src/crc64.h b/examples/redis-unstable/src/crc64.h new file mode 100644 index 0000000..e0fccd9 --- /dev/null +++ b/examples/redis-unstable/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