1 /**
2  * @file
3  *
4  * Jenkins' lookup3 non-cryptographic hash.
5  */
6 #ifndef _USUAL_HASHING_LOOKUP3_H_
7 #define _USUAL_HASHING_LOOKUP3_H_
8 
9 #include <usual/base.h>
10 
11 /**
12  * Calculate 64-bit hash over data
13  */
14 uint64_t hash_lookup3(const void *data, size_t len);
15 
16 #endif
17