fnv: work with non-64-bit aligned chunks of data
[fio.git] / crc / murmur3.h
... / ...
CommitLineData
1#ifndef FIO_MURMUR3_H
2#define FIO_MURMUR3_H
3
4#include <inttypes.h>
5
6uint32_t murmurhash3(const void *key, uint32_t len, uint32_t seed);
7
8#endif