2016-03-18 11:06:02 +01:00
|
|
|
|
|
|
|
#ifndef _BLOOM_MURMURHASH2
|
|
|
|
#define _BLOOM_MURMURHASH2
|
|
|
|
|
2016-04-21 13:53:29 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Generates and returns a hash code from a byte array.
|
|
|
|
*/
|
2016-03-18 11:06:02 +01:00
|
|
|
unsigned int murmurhash2(const void * key, int len, const unsigned int seed);
|
|
|
|
|
|
|
|
#endif
|