Functions to get size of specially encoded value in bytes

This commit is contained in:
Pieter Noordhuis
2011-02-17 17:47:03 +01:00
committed by antirez
parent 660a0cdf02
commit 1c53928fca
6 changed files with 18 additions and 4 deletions

View File

@ -15,5 +15,6 @@ uint8_t intsetFind(intset *is, int64_t value);
int64_t intsetRandom(intset *is);
uint8_t intsetGet(intset *is, uint32_t pos, int64_t *value);
uint32_t intsetLen(intset *is);
size_t intsetSize(intset *is);
#endif // __INTSET_H