创建
This commit is contained in:
16
client/nirvana_murmurhash.h
Normal file
16
client/nirvana_murmurhash.h
Normal file
@@ -0,0 +1,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
|
||||
|
||||
Reference in New Issue
Block a user