aboutsummaryrefslogtreecommitdiff
path: root/inc/hash.h
diff options
context:
space:
mode:
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