Added missing line breaks.

This commit is contained in:
LoRd_MuldeR 2022-12-05 17:30:34 +01:00
parent da0321549d
commit e48efa984a
4 changed files with 6 additions and 4 deletions

View File

@ -52,6 +52,7 @@ int main(void)
{ {
printf("Entry: 0x%016" PRIX64 " -> 0x%016" PRIX64 "\n", key, value); printf("Entry: 0x%016" PRIX64 " -> 0x%016" PRIX64 "\n", key, value);
} }
puts("");
/* destroy the hash map, when it is no longer needed! */ /* destroy the hash map, when it is no longer needed! */
hash_map_destroy64(hash_map); hash_map_destroy64(hash_map);

View File

@ -51,6 +51,7 @@ int main(void)
{ {
printf("Item: 0x%016" PRIX64 "\n", item); printf("Item: 0x%016" PRIX64 "\n", item);
} }
puts("");
/* destroy the hash set, when it is no longer needed! */ /* destroy the hash set, when it is no longer needed! */
hash_set_destroy64(hash_set); hash_set_destroy64(hash_set);

View File

@ -47,11 +47,11 @@ int main(void)
hash_map_destroy64(hash_set); hash_map_destroy64(hash_set);
clk_end = clock_query(); clk_end = clock_query();
printf("Tests completed successfully [%.2f].", (clk_end - clk_begin) / ((double)clock_frequency())); printf("Tests completed successfully [%.2f].\n\n", (clk_end - clk_begin) / ((double)clock_frequency()));
return EXIT_SUCCESS; return EXIT_SUCCESS;
failure: failure:
hash_map_destroy64(hash_set); hash_map_destroy64(hash_set);
puts("\nSomething went wrong !!!"); puts("\nSomething went wrong !!!\n");
return EXIT_FAILURE; return EXIT_FAILURE;
} }

View File

@ -47,11 +47,11 @@ int main(void)
hash_set_destroy64(hash_set); hash_set_destroy64(hash_set);
clk_end = clock_query(); clk_end = clock_query();
printf("Tests completed successfully [%.2f].", (clk_end - clk_begin) / ((double)clock_frequency())); printf("Tests completed successfully [%.2f].\n\n", (clk_end - clk_begin) / ((double)clock_frequency()));
return EXIT_SUCCESS; return EXIT_SUCCESS;
failure: failure:
hash_set_destroy64(hash_set); hash_set_destroy64(hash_set);
puts("\nSomething went wrong !!!"); puts("\nSomething went wrong !!!\n");
return EXIT_FAILURE; return EXIT_FAILURE;
} }