1 2 3 4 5 6 7 8
#ifndef _MURMURHASH3_H_ #define _MURMURHASH3_H_ #include <stdint.h> uint32_t MurmurHash3_x86_32(const void * key, uint32_t len, uint32_t seed); #endif