implement get tunable and add get regression
[libdht.git] / murmur3.h
bloba1b302cc0382b4761e5ac0a249ed0c3f53749a81
1 /*
2 * based on code written by Austin Appleby and placed in the public domain
3 */
5 #ifndef MURMUR3_H
6 #define MURMUR3_H
8 #include <stdint.h>
10 void murmurhash3_x64_128(const void *, const int, const uint32_t, void *);
12 #endif