diff options
| author | ame <[email protected]> | 2024-03-11 14:02:12 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2024-03-11 14:02:12 -0500 |
| commit | 74289579ac66890ef0d7df2a5ec5f15f8308b8cd (patch) | |
| tree | 36570aa190e64b57c69c10e0cf0e3c1eb880bc92 /src/hash/murmur.h | |
| parent | 652146a3a4780ede6cc99ae56871f8f6bb506284 (diff) | |
hashing fixes
Diffstat (limited to 'src/hash/murmur.h')
| -rw-r--r-- | src/hash/murmur.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/hash/murmur.h b/src/hash/murmur.h index d7d7fc1..73a18a2 100644 --- a/src/hash/murmur.h +++ b/src/hash/murmur.h @@ -1,4 +1,8 @@ #include "../lua.h" +#include <stdint.h> + +uint32_t murmur1_32(uint8_t* in, size_t len, uint32_t seed); +uint32_t murmur2_32(uint8_t* in, size_t len, uint32_t seed); int l_murmur1_32(lua_State*); int l_murmur2_32(lua_State*); |
