diff options
author | Danny van Kooten <dannyvankooten@users.noreply.github.com> | 2020-03-12 09:30:29 +0100 |
---|---|---|
committer | Danny van Kooten <dannyvankooten@users.noreply.github.com> | 2020-03-12 09:30:29 +0100 |
commit | cd70ca266bb212d6a32d2dd808c7708bb7be6f1f (patch) | |
tree | 5cfe0289c5a964520dee96691561f8844023ad50 /hashmap.h | |
parent | edf331cd2573726d8053ce76e3497203a12d99b9 (diff) | |
download | unja-cd70ca266bb212d6a32d2dd808c7708bb7be6f1f.tar.gz unja-cd70ca266bb212d6a32d2dd808c7708bb7be6f1f.zip |
move files to src/ subdir
Diffstat (limited to 'hashmap.h')
-rw-r--r-- | hashmap.h | 10 |
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 |