Fix DEBUG DIGEST, SORT and AOF rewrite

This commit is contained in:
Pieter Noordhuis
2011-03-14 13:30:06 +01:00
parent 366e872d4d
commit 7f9c973467
4 changed files with 100 additions and 25 deletions

View File

@ -779,6 +779,9 @@ zskiplist *zslCreate(void);
void zslFree(zskiplist *zsl);
zskiplistNode *zslInsert(zskiplist *zsl, double score, robj *obj);
unsigned char *zzlInsert(unsigned char *zl, robj *ele, double score);
double zzlGetScore(unsigned char *sptr);
void zzlNext(unsigned char *zl, unsigned char **eptr, unsigned char **sptr);
void zzlPrev(unsigned char *zl, unsigned char **eptr, unsigned char **sptr);
unsigned int zsetLength(robj *zobj);
void zsetConvert(robj *zobj, int encoding);