diff options
Diffstat (limited to 'include/hash_map.h')
-rw-r--r-- | include/hash_map.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/hash_map.h b/include/hash_map.h deleted file mode 100644 index 6bc733f..0000000 --- a/include/hash_map.h +++ /dev/null @@ -1,13 +0,0 @@ -#ifndef HASH_MAP_H -#define HASH_MAP_H - -typedef struct HashMap *hashmap_t; - -hashmap_t hashmap_create(void); -void hashmap_insert(hashmap_t map, const char *key, int value); -int *hashmap_get(hashmap_t map, const char *key); -void hashmap_delete(hashmap_t map, const char *key); -void hashmap_free(hashmap_t map); -void hashmap_iterate(hashmap_t map, void (*callback)(const char *key, int value)); - -#endif
\ No newline at end of file |