summaryrefslogtreecommitdiff
path: root/assoc.h
blob: dbb1caf16e97b0f4717c41cc6573882dc2ad6df9 (plain)
1
2
3
4
5
6
7
8
9
/* associative array */
void assoc_init(void);
item *assoc_find(const char *key, const size_t nkey);
int assoc_insert(item *item);
void assoc_delete(const char *key, const size_t nkey);
void do_assoc_move_next_bucket(void);
int start_assoc_maintenance_thread(void);
void stop_assoc_maintenance_thread(void);