mirror of
https://github.com/fluencelabs/redis
synced 2025-06-24 14:31:34 +00:00
encoded types API to get blob length
This commit is contained in:
@ -730,8 +730,8 @@ unsigned int ziplistLen(unsigned char *zl) {
|
||||
return len;
|
||||
}
|
||||
|
||||
/* Return size in bytes of ziplist. */
|
||||
unsigned int ziplistSize(unsigned char *zl) {
|
||||
/* Return ziplist blob size in bytes. */
|
||||
size_t ziplistBlobLen(unsigned char *zl) {
|
||||
return ZIPLIST_BYTES(zl);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user