summaryrefslogtreecommitdiff
path: root/src/std/containers/hashmap.h
blob: 64a5bf7e9a5c815514cb1a799df077f4b66bb02f (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
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);