diff options
Diffstat (limited to 'src/std/containers/hashmap.h')
-rw-r--r-- | src/std/containers/hashmap.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/std/containers/hashmap.h b/src/std/containers/hashmap.h new file mode 100644 index 0000000..64a5bf7 --- /dev/null +++ b/src/std/containers/hashmap.h @@ -0,0 +1,28 @@ +/** + * @file hashmap.h + * @author your name (you@domain.com) + * @brief + * @version 0.1 + * @date 2024-04-27 + * + * @copyright Copyright (c) 2024 + * + */ + + +typedef struct hashmap hashmap; + +/* +Example usage +------------- +init hashmap +insert (string, material) +get (string) -> material_opt or material* ? + +*/ + +void hashmap_init(hashmap* map); + +// ... + +void hashmap_free(hashmap* map);
\ No newline at end of file |