]> git.saurik.com Git - redis.git/blob - src/crc64.h
Client should not block multiple times on the same key.
[redis.git] / src / crc64.h
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 #endif