Added caching support

This commit is contained in:
Scoopta
2019-08-18 20:49:12 -07:00
parent 20f3d5769d
commit 133fcdd1e9
3 changed files with 139 additions and 19 deletions

View File

@@ -35,6 +35,8 @@ bool map_put_void(struct map* map, const char* key, void* value);
void* map_get(struct map* map, const char* key);
bool map_contains(struct map* map, const char* key);
size_t map_size(struct map* map);
#endif