Added unit tests for BigInt data type and updated docs

This commit is contained in:
2025-11-17 16:41:09 +01:00
parent f625862ad2
commit 9e419d09ac
11 changed files with 402 additions and 69 deletions

View File

@@ -37,7 +37,7 @@ uint64_t hash_key(const char *key) {
*
* Returns a map_result_t data type containing a new hash map
*/
map_result_t map_new() {
map_result_t map_new(void) {
map_result_t result = {0};
map_t *map = malloc(sizeof(map_t));