summaryrefslogtreecommitdiff
path: root/archive/src/std/containers/hashmap.h
blob: 95c1c6bb9d9469ace4f70293c275d6abbd1620cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * @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);