CRC64 implementation added to Redis code base.

This commit is contained in:
antirez
2012-04-02 12:31:44 +02:00
parent 11dae1711f
commit 179ee2db78
3 changed files with 194 additions and 1 deletions

View File

@ -694,6 +694,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);