aboutsummaryrefslogtreecommitdiff
path: root/hashmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'hashmap.h')
-rw-r--r--hashmap.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/hashmap.h b/hashmap.h
deleted file mode 100644
index a37d3d6..0000000
--- a/hashmap.h
+++ /dev/null
@@ -1,10 +0,0 @@
-
-struct hashmap {
- struct node *buckets[26];
-};
-
-void hashmap_insert(struct hashmap *hm, char *key, void *value);
-void *hashmap_get(struct hashmap *hm, char *key);
-void hashmap_remove(char *key);
-struct hashmap *hashmap_new();
-void hashmap_free(struct hashmap *hm); \ No newline at end of file