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