]> git.saurik.com Git - redis.git/blobdiff - src/redis.h
expireGenericCommand(): better variable names and a top-comment that describes the...
[redis.git] / src / redis.h
index 66883832c96cf8559ac0563f3b05f3f33fe05a73..b386f16c969677df6355afc1f0d14d1ba53a2b02 100644 (file)
@@ -89,7 +89,6 @@
 #define REDIS_SET 2
 #define REDIS_ZSET 3
 #define REDIS_HASH 4
-#define REDIS_VMPOINTER 8
 
 /* Objects encoding. Some kind of objects like Strings and Hashes can be
  * internally represented in multiple ways. The 'encoding' field of the object
@@ -828,6 +827,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);