//-----------------------------------------------------------------------------
// MurmurHash3 was written by Austin Appleby, and is placed in the public
// domain. The author hereby disclaims copyright to this source code.
#ifndef _MURMURHASH3_H_
#define_MURMURHASH3_H_#include<stdint.h>voidMurmurHash3_x64_128(constvoid*key,intlen,uint32_tseed,void*out);#endif// _MURMURHASH3_H_