1 //----------------------------------------------------------------------------- 2 // MurmurHash3 was written by Austin Appleby, and is placed in the public 3 // domain. The author hereby disclaims copyright to this source code. 4 5 #ifndef MURMURHASH3_H 6 #define MURMURHASH3_H 7 8 //----------------------------------------------------------------------------- 9 // Platform-specific functions and macros 10 #include <stdint.h> 11 #include <stddef.h> 12 13 //----------------------------------------------------------------------------- 14 15 uint32_t MurmurHash3_x86_32(const void *key, size_t length); 16 17 //----------------------------------------------------------------------------- 18 19 #endif // MURMURHASH3_H 20