]> git.saurik.com Git - redis.git/blame - src/crc64.h
Client should not block multiple times on the same key.
[redis.git] / src / crc64.h
CommitLineData
2f62c966 1#ifndef CRC64_H
2#define CRC64_H
3
4#include <stdint.h>
5
6uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l);
7
8#endif