1#ifndef CRC64_H
2#define CRC64_H
3
4#include <stdint.h>
5
6void crc64_init(void);
7uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l);
8
9#ifdef REDIS_TEST
10int crc64Test(int argc, char *argv[], int flags);
11#endif
12
13#endif
14