Return intset blob size in bytes. */
| 282 | |
| 283 | /* Return intset blob size in bytes. */ |
| 284 | size_t intsetBlobLen(intset *is) { |
| 285 | return sizeof(intset)+(size_t)intrev32ifbe(is->length)*intrev32ifbe(is->encoding); |
| 286 | } |
| 287 | |
| 288 | /* Validate the integrity of the data structure. |
| 289 | * when `deep` is 0, only the integrity of the header is validated. |
no outgoing calls
no test coverage detected