aboutsummaryrefslogtreecommitdiff
path: root/hash.h
blob: 369d8495e1afe802b4673eba2af401f4dc52f358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef HASH_H_
#define HASH_H_

#include "bowl.h"

err_t hash_insert_key(struct bowl *, char *key, struct bowl *);

err_t hash_remove_key(struct bowl *, char *key, struct bowl **);

err_t hash_free(struct bowl *);

err_t hash_free_shallow(struct bowl_arr *);

#endif // HASH_H_