| 168 | } |
| 169 | |
| 170 | void *htable_nextval_(const struct htable *ht, |
| 171 | struct htable_iter *i, size_t hash) |
| 172 | { |
| 173 | i->off = (i->off + 1) & ((1 << ht->bits)-1); |
| 174 | return htable_val(ht, i, hash, 0); |
| 175 | } |
| 176 | |
| 177 | void *htable_first_(const struct htable *ht, struct htable_iter *i) |
| 178 | { |
no test coverage detected