You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef FIO_MURMUR3_H |
|
#define FIO_MURMUR3_H |
|
|
|
#include <inttypes.h> |
|
|
|
uint32_t murmurhash3(const void *key, uint32_t len, uint32_t seed); |
|
|
|
#endif
|
|
|