| 132 | example_htable); |
| 133 | |
| 134 | static struct example *new_example(const tal_t *ctx, size_t i) |
| 135 | { |
| 136 | struct example *e = tal(ctx, struct example); |
| 137 | e->val = i; |
| 138 | e->val2 = siphash24(&seed, &i, sizeof(i)); |
| 139 | return e; |
| 140 | } |
| 141 | |
| 142 | static void check_htable(struct example_htable *htable, |
| 143 | struct example *arr[], |