blob: 24e1ad3a02f4684aeec6f14a322a7556fb5122b4 [file] [log] [blame]
tanjent@gmail.comf3b78972012-03-01 03:38:55 +00001//-----------------------------------------------------------------------------
2// MurmurHash1 was written by Austin Appleby, and is placed in the public
3// domain. The author hereby disclaims copyright to this source code.
4
5#ifndef _MURMURHASH1_H_
6#define _MURMURHASH1_H_
7
8//-----------------------------------------------------------------------------
9// Platform-specific functions and macros
10
11// Microsoft Visual Studio
12
aappleby@google.comb52816c2013-12-30 21:23:01 +000013#if defined(_MSC_VER) && (_MSC_VER < 1600)
tanjent@gmail.comf3b78972012-03-01 03:38:55 +000014
15typedef unsigned char uint8_t;
aappleby@google.comb52816c2013-12-30 21:23:01 +000016typedef unsigned int uint32_t;
tanjent@gmail.comf3b78972012-03-01 03:38:55 +000017typedef unsigned __int64 uint64_t;
18
19// Other compilers
20
21#else // defined(_MSC_VER)
22
23#include <stdint.h>
24
25#endif // !defined(_MSC_VER)
26
27//-----------------------------------------------------------------------------
28
29uint32_t MurmurHash1 ( const void * key, int len, uint32_t seed );
30uint32_t MurmurHash1Aligned ( const void * key, int len, uint32_t seed );
31
32//-----------------------------------------------------------------------------
33
34#endif // _MURMURHASH1_H_