main.c -> test.c

This commit is contained in:
seajee
2025-11-18 21:35:14 +01:00
parent b13e0f09c1
commit 0faffa3829
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
test: main.c hm.h test: test.c hm.h
cc -Wall -Wextra -ggdb -o test main.c cc -Wall -Wextra -ggdb -o test test.c
clean: clean:
rm -rf test rm -rf test

View File

@@ -40,7 +40,7 @@ int main(void)
} }
} }
print(&freq); print_hm(&freq);
printf("count = %zu\n", freq.count); printf("count = %zu\n", freq.count);
HashMapIterator it = hm_iterate(&freq); HashMapIterator it = hm_iterate(&freq);