CRC64 implementation added to Redis code base.

This commit is contained in:
antirez
2012-04-02 12:31:44 +02:00
parent ab8232d022
commit 9510d65dc8
3 changed files with 194 additions and 1 deletions

View File

@ -828,6 +828,7 @@ extern dictType hashDictType;
long long ustime(void);
long long mstime(void);
void getRandomHexChars(char *p, unsigned int len);
uint64_t crc64(const unsigned char *s, uint64_t l);
/* networking.c -- Networking and Client related operations */
redisClient *createClient(int fd);