update example.c

This commit is contained in:
aiden 2023-04-20 13:46:35 +01:00
parent c38db08c0a
commit ca5e1ae061
Signed by: aiden
GPG Key ID: EFA9C74AEBF806E0

View File

@ -1,4 +1,4 @@
#define HASHMAP_HASH_FUNCTION(key) (*(uint64_t *)key ^ 9268326398 /* arbitrary integer */)
#define HASHMAP_HASH_FUNCTION(key, ksz) (*(uint64_t *)key ^ 9268326398 /* arbitrary integer */)
#include "src/hashmap.h"
#include <time.h>
#include <stdio.h>