1 2 3 4 5 6 7 8 9 10
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);