| 180 | } |
| 181 | |
| 182 | void *htable_nextval_(const struct htable *ht, |
| 183 | struct htable_iter *i, size_t hash) |
| 184 | { |
| 185 | i->off = (i->off + 1) & ((1 << ht->bits)-1); |
| 186 | return htable_val(ht, i, hash, 0); |
| 187 | } |
| 188 | |
| 189 | void *htable_first_(const struct htable *ht, struct htable_iter *i) |
| 190 | { |
no test coverage detected