aboutsummaryrefslogtreecommitdiff
path: root/src/lib/third_party/include/MurmurHash3.h
blob: a048eb37d317efd0f4f2192a043d500605e14d4c (plain)
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