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

Function htable_nextval_

ccan/ccan/htable/htable.c:170–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168}
169
170void *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
177void *htable_first_(const struct htable *ht, struct htable_iter *i)
178{

Callers 1

htable_checkFunction · 0.85

Calls 1

htable_valFunction · 0.85

Tested by

no test coverage detected