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
cc -Wall -Wextra -ggdb -o test main.c
test: test.c hm.h
cc -Wall -Wextra -ggdb -o test test.c
clean:
rm -rf test

View File

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