From 81a435207adabc6d8e4211728cdb55d17bd63a61 Mon Sep 17 00:00:00 2001 From: jwerle Date: Tue, 31 Dec 2024 13:48:07 -0500 Subject: chore(): clean up --- murmurhash.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'murmurhash.c') 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 */ - #include #include #include @@ -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; -- cgit v1.2.3