futriix/src/crc64.h
John Sully 27eb239f1a Fix bad merge in CI.yml
Former-commit-id: 6311d709c39b3bacaeab77b18033010f1b548f81
2020-05-21 22:09:06 -04:00

22 lines
285 B
C

#ifndef CRC64_H
#define CRC64_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
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[]);
#endif
#ifdef __cplusplus
}
#endif
#endif