summaryrefslogtreecommitdiff
path: root/client/nirvana_murmurhash.h
blob: 14679438e84c8e04f623b95e002087973de7f620 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __NVN_MURMURHASH_H__
#define __NVN_MURMURHASH_H__

#ifdef __cplusplus
extern "C" {
#endif

unsigned int murmurhash2(const void * key, int len, const unsigned int seed);
u_int64_t MurmurHash64A(const void * key, int len, unsigned int seed);

#ifdef __cplusplus
}
#endif

#endif