1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2025-05-21 23:21:15 +02:00

feat: add hash_map_free

This commit is contained in:
2023-08-03 23:17:54 +02:00
parent 8b6f06dc6e
commit a0a1310f53
5 changed files with 18 additions and 0 deletions

View File

@ -24,4 +24,5 @@ void hash_map_test() {
hash_map_remove(hash_map, "key5");
assert(hash_map->length == 5);
assert(!hash_map_contains_key(hash_map, "key5"));
hash_map_free(hash_map);
}