aboutsummaryrefslogtreecommitdiff
path: root/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'hash.h')
-rw-r--r--hash.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/hash.h b/hash.h
new file mode 100644
index 0000000..a5d763d
--- /dev/null
+++ b/hash.h
@@ -0,0 +1,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_
+