Blame


1 b343c297 2021-10-11 stsp //-----------------------------------------------------------------------------
2 b343c297 2021-10-11 stsp // MurmurHash2 was written by Austin Appleby, and is placed in the public
3 b343c297 2021-10-11 stsp // domain. The author hereby disclaims copyright to this source code.
4 b343c297 2021-10-11 stsp
5 b343c297 2021-10-11 stsp /* Obtained from https://github.com/aappleby/smhasher */
6 b343c297 2021-10-11 stsp
7 5df018ff 2021-10-14 stsp uint32_t murmurhash2(const unsigned char *key, int len, uint32_t seed);