Added missing line breaks.
This commit is contained in:
parent
da0321549d
commit
e48efa984a
@ -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);
|
||||||
|
@ -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);
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user