summaryrefslogtreecommitdiff
path: root/examples/gehashmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gehashmap.c')
-rw-r--r--examples/gehashmap.c31
1 files changed, 19 insertions, 12 deletions
diff --git a/examples/gehashmap.c b/examples/gehashmap.c
index f216d00..b0763ac 100644
--- a/examples/gehashmap.c
+++ b/examples/gehashmap.c
@@ -2,18 +2,25 @@
#include <stdlib.h>
#include <string.h>
-size_t hash(char *);
-
-#define GEHASHMAP_NAME funmap
-#define GEHASHMAP_KEY_T char *
-#define GEHASHMAP_VAL_T int
-#define GEHASHMAP_CMP_FUNC (int (*)(char *, char *)) strcmp
-#define GEHASHMAP_FREE_FUNC (void (*)(char *)) free
-#define GEHASHMAP_HASH_FUNC hash
#include <gehashmap.h>
+GEHASHMAP_API(char *, int, funmap);
+GEHASHMAP_IMPL(char *, int, funmap);
+
+bool
+funmap_key_iseq(char *a, char *b)
+{
+ return strcmp(a, b) == 0;
+}
+
+void
+funmap_key_free(char *s)
+{
+ free(s);
+}
+
size_t
-hash(char *s)
+funmap_key_hash(char *s)
{
char c;
size_t x = 5381;
@@ -31,9 +38,9 @@ main(void)
funmap_t *map;
funmap_new(map = malloc(sizeof(funmap_t)));
- funmap_put(map, strdup("Thomas Voß"), 5);
- funmap_put(map, strdup("THOMAS VOẞ"), 6);
- funmap_put(map, strdup("Thomas Voss"), 7);
+ funmap_set(map, strdup("Thomas Voß"), 5);
+ funmap_set(map, strdup("THOMAS VOẞ"), 6);
+ funmap_set(map, strdup("Thomas Voss"), 7);
funmap_get(map, "Thomas Voß", &n); printf("Thomas Voß -> ‚%d‘\n", n);
funmap_get(map, "THOMAS VOẞ", &n); printf("THOMAS VOẞ -> ‚%d‘\n", n);
funmap_get(map, "Thomas Voss", &n); printf("Thomas Voss -> ‚%d‘\n", n);