aboutsummaryrefslogtreecommitdiff
path: root/hash.h
blob: a5d763deb2a35fe304aaa42f6b7944d6aa9aacfe (plain)
1
2
3
4
5
6
7
8
9
10
11
#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 **);

#endif // HASH_H_