Sergej Schumilo cd702b528c Initial Release of Nyx
Co-authored-by: Cornelius Aschermann <cornelius@hexgolems.com>
2021-11-14 22:20:53 +01:00

13 lines
312 B
C

#ifndef _MMH3_H
#define _MMH3_H
#include <stdint.h>
typedef unsigned __int128 uint128_t;
void mmh3_x86_32(const void *key, int len, uint32_t seed, void *out);
void mmh3_x86_128(const void *key, int len, uint32_t seed, void *out);
void mmh3_x64_128(const void *key, int len, uint32_t seed, void *out);
#endif