From 8b6acc85633520f109d348c5e46c8a89521b3932 Mon Sep 17 00:00:00 2001 From: Flavian Kaufmann Date: Wed, 21 May 2025 14:05:27 +0200 Subject: procedures --- include/hash_map.h | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 include/hash_map.h (limited to 'include/hash_map.h') 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 -- cgit v1.2.3