Started 'bigint_t' implementation

This commit is contained in:
2025-11-10 16:23:50 +01:00
parent 574877eba7
commit 4240f5db66
5 changed files with 328 additions and 3 deletions

View File

@@ -225,7 +225,7 @@ int map_usage() {
// Print size and capacity
printf("Map size (should be 2): %zu\n", map_size(map));
printf("Map capacity (should be >=2): %zu\n\n", map_capacity(map));
printf("Map capacity (should be > 2): %zu\n\n", map_capacity(map));
// Retrieve keys
map_result_t get_res = map_get(map, "x");