murmurhash3.h revision 3996e391054a1c02ab62e1541ae21a8204bd5d0a
/* This file is based on the public domain MurmurHash3 from Austin Appleby:
*
* We use only the 32 bit variant because the 2 produce different result while
* we need to produce the same result regardless of the architecture as
* clients can be both 64 or 32 bit at the same time.
*/
#ifndef _UTIL_MURMURHASH3_H_
#define _UTIL_MURMURHASH3_H_
#include <stdint.h>
#endif /* _UTIL_MURMURHASH3_H_ */