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