| 221 | } |
| 222 | |
| 223 | uint DataBlock_DeletedItemsCount(const DataBlock *dataBlock) { |
| 224 | return array_len(dataBlock->deletedIdx); |
| 225 | } |
| 226 | |
| 227 | inline bool DataBlock_ItemIsDeleted(void *item) { |
| 228 | DataBlockItemHeader *header = GET_ITEM_HEADER(item); |
no test coverage detected