From 144bd88ff5146af4df99596606a7bf2a624723fc Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sat, 24 Dec 2022 02:25:49 +0100 Subject: Simplify hashmaps by not freeing keys --- examples/gehashmap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/gehashmap.c') diff --git a/examples/gehashmap.c b/examples/gehashmap.c index b7a86ff..1ddd391 100644 --- a/examples/gehashmap.c +++ b/examples/gehashmap.c @@ -62,9 +62,9 @@ main(void) atoimap_new(map_a = malloc(sizeof(atoimap_t))); itoumap_new(map_b = malloc(sizeof(itoumap_t))); - atoimap_set(map_a, strdup("Thomas Voß"), 5); - atoimap_set(map_a, strdup("THOMAS VOẞ"), 6); - atoimap_set(map_a, strdup("Thomas Voss"), 7); + atoimap_set(map_a, "Thomas Voß", 5); + atoimap_set(map_a, "THOMAS VOẞ", 6); + atoimap_set(map_a, "Thomas Voss", 7); atoimap_get(map_a, "Thomas Voß", &i); printf("Thomas Voß -> %d\n", i); atoimap_get(map_a, "THOMAS VOẞ", &i); printf("THOMAS VOẞ -> %d\n", i); atoimap_get(map_a, "Thomas Voss", &i); printf("Thomas Voss -> %d\n", i); -- cgit v1.2.3