diff options
| author | ame <[email protected]> | 2025-07-24 02:20:32 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2025-07-24 02:20:32 -0500 |
| commit | b392bec30ebdd4c84446623193b82531b8001b88 (patch) | |
| tree | 05a803b9f0c333633f5b09d582343e36ddb7443c /src/hash/spookyhash.h | |
| parent | 09943d9cea7a29ad8a0b8dbbc9ed8a2e0971cc08 (diff) | |
remove 'newer' hashes that arent really mine
Diffstat (limited to 'src/hash/spookyhash.h')
| -rw-r--r-- | src/hash/spookyhash.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/hash/spookyhash.h b/src/hash/spookyhash.h deleted file mode 100644 index 5ca6c8a..0000000 --- a/src/hash/spookyhash.h +++ /dev/null @@ -1,17 +0,0 @@ -#include "../lua.h" -#include <stdint.h> - -enum spooky_version { - spv1, spv2 -}; - -void spookyhash128(uint8_t* in, size_t len, uint64_t* hash1, uint64_t* hash2, enum spooky_version v); -uint64_t spookyhash64(uint8_t *message, size_t length, uint64_t seed, enum spooky_version v); -uint32_t spookyhash32(uint8_t *message, size_t length, uint32_t seed, enum spooky_version v); - -int l_spookyhash128_v1(lua_State*); -int l_spookyhash128_v2(lua_State*); -int l_spookyhash64_v1(lua_State*); -int l_spookyhash64_v2(lua_State*); -int l_spookyhash32_v1(lua_State*); -int l_spookyhash32_v2(lua_State*); |
