mirror of
https://github.com/fluencelabs/redis
synced 2025-06-21 13:01:32 +00:00
encoded types API to get blob length
This commit is contained in:
@ -222,6 +222,11 @@ uint32_t intsetLen(intset *is) {
|
||||
return is->length;
|
||||
}
|
||||
|
||||
/* Return intset blob size in bytes. */
|
||||
size_t intsetBlobLen(intset *is) {
|
||||
return sizeof(intset)+is->length*is->encoding;
|
||||
}
|
||||
|
||||
#ifdef INTSET_TEST_MAIN
|
||||
#include <sys/time.h>
|
||||
|
||||
|
Reference in New Issue
Block a user