MCPcopy Create free account
hub / github.com/ElementsProject/lightning / htable_nextval_

Function htable_nextval_

ccan/ccan/htable/htable.c:182–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180}
181
182void *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
189void *htable_first_(const struct htable *ht, struct htable_iter *i)
190{

Callers 1

htable_checkFunction · 0.85

Calls 1

htable_valFunction · 0.85

Tested by

no test coverage detected