27 typedef void (*u_hashmap_int_callback)(
void *item,
void *priv);
36 u_hashmap_int_find(
struct u_hashmap_int *hmi, uint64_t key,
void **out_item);
39 u_hashmap_int_insert(
struct u_hashmap_int *hmi, uint64_t key,
void *value);
52 u_hashmap_int_callback cb,
A simple uint64_t key to a void pointer hashmap.
Definition: u_hashmap.cpp:22
void u_hashmap_int_clear_and_call_for_each(struct u_hashmap_int *hmi, u_hashmap_int_callback cb, void *priv)
First clear the hashmap and then call the given callback with each item that was in the hashmap...
Definition: u_hashmap.cpp:77
Header holding common defines.