28struct ec_htable_elt_ref;
bool ec_htable_has_key(const struct ec_htable *htable, const void *key, size_t key_len)
Check if the hash table contains this key.
void ec_htable_force_seed(uint32_t seed)
Force a seed for the hash function.
struct ec_htable_elt_ref * ec_htable_iter_next(struct ec_htable_elt_ref *iter)
Make the iterator point to the next element in the hash table.
void(* ec_htable_elt_free_t)(void *)
Callback function for freeing hash table elements.
struct ec_htable * ec_htable(void)
Create a hash table.
void * ec_htable_iter_get_val(const struct ec_htable_elt_ref *iter)
Get the value of the current element.
void ec_htable_free(struct ec_htable *htable)
Free a hash table and all its objects.
struct ec_htable * ec_htable_dup(const struct ec_htable *htable)
Duplicate a hash table.
size_t ec_htable_iter_get_key_len(const struct ec_htable_elt_ref *iter)
Get the key length of the current element.
int ec_htable_set(struct ec_htable *htable, const void *key, size_t key_len, void *val, ec_htable_elt_free_t free_cb)
Add/replace an object in the hash table.
void * ec_htable_get(const struct ec_htable *htable, const void *key, size_t key_len)
Get a value from the hash table.
const void * ec_htable_iter_get_key(const struct ec_htable_elt_ref *iter)
Get the key of the current element.
struct ec_htable_elt_ref * ec_htable_iter(const struct ec_htable *htable)
Iterate the elements in the hash table.
int ec_htable_del(struct ec_htable *htable, const void *key, size_t key_len)
Delete an object from the hash table.
void ec_htable_dump(FILE *out, const struct ec_htable *htable)
Dump a hash table.
size_t ec_htable_len(const struct ec_htable *htable)
Get the length of a hash table.