aboutsummaryrefslogtreecommitdiff
path: root/inc/hash.h
diff options
context:
space:
mode:
authorMarvin Borner2023-05-21 23:47:52 +0200
committerMarvin Borner2023-05-21 23:47:52 +0200
commitcbb215c7f8f78f0a54c22fa90569733bef05907e (patch)
treee9bca123253ed9d0c244f5b2b0d6d2d1c7c4d7ea /inc/hash.h
parentd1443cb239ce306fcca9bfc67c4b162a0da9b917 (diff)
It WAS a hash collision after all!
I don't know what I tested before lol but okay great!
Diffstat (limited to 'inc/hash.h')
-rw-r--r--inc/hash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/hash.h b/inc/hash.h
index 96a30dd..35da312 100644
--- a/inc/hash.h
+++ b/inc/hash.h
@@ -7,8 +7,8 @@
#include <stdint.h>
#include <stddef.h>
-typedef uint32_t hash_t;
+typedef uint64_t hash_t;
-hash_t hash(const uint8_t *key, size_t len, uint32_t seed);
+hash_t hash(const void *key, int len, uint64_t seed);
#endif