SDS: changes to unify Redis SDS with antirez/sds repo.

This commit is contained in:
antirez
2015-07-25 17:25:44 +02:00
parent 9894495c5a
commit cb2782c314
4 changed files with 75 additions and 27 deletions

View File

@ -255,7 +255,7 @@ sds sdsMakeRoomFor(sds s, size_t addlen);
void sdsIncrLen(sds s, int incr);
sds sdsRemoveFreeSpace(sds s);
size_t sdsAllocSize(sds s);
size_t sdsZmallocSize(sds s);
void *sdsAllocPtr(sds s);
#ifdef REDIS_TEST
int sdsTest(int argc, char *argv[]);