diff options
Diffstat (limited to 'murmurhash.c')
-rw-r--r-- | murmurhash.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/murmurhash.c b/murmurhash.c index 5a4588e..d3327ac 100644 --- a/murmurhash.c +++ b/murmurhash.c @@ -1,9 +1,8 @@ /** - * `murmurhash.h' - murmurhash + * `murmurhash.c' - murmurhash * * copyright (c) 2014-2025 joseph werle <joseph.werle@gmail.com> */ - #include <stdlib.h> #include <stdio.h> #include <stdint.h> @@ -26,8 +25,7 @@ static uint32_t htole32 (uint32_t value) { #endif #endif -uint32_t -murmurhash (const char *key, uint32_t len, uint32_t seed) { +uint32_t murmurhash (const char *key, uint32_t len, uint32_t seed) { uint32_t c1 = 0xcc9e2d51; uint32_t c2 = 0x1b873593; uint32_t r1 = 15; |