X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/bd068b15c25c96200a8288beb5d8bc5331059e33..bb99f42596bb0f5c90416c54f6b9f1960cda71ed:/src/sds.h diff --git a/src/sds.h b/src/sds.h index b00551b4..0648381b 100644 --- a/src/sds.h +++ b/src/sds.h @@ -94,5 +94,7 @@ sds sdsmapchars(sds s, char *from, char *to, size_t setlen); /* Low level functions exposed to the user API */ sds sdsMakeRoomFor(sds s, size_t addlen); void sdsIncrLen(sds s, int incr); +sds sdsRemoveFreeSpace(sds s); +size_t sdsAllocSize(sds s); #endif