17 lines
286 B
C
17 lines
286 B
C
#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
|
|
|