Merge branch 'fio-histo-fix' of https://github.com/parallel-fs-utils/fio
[fio.git] / crc / murmur3.h
1 #ifndef FIO_MURMUR3_H
2 #define FIO_MURMUR3_H
3
4 #include <inttypes.h>
5
6 uint32_t murmurhash3(const void *key, uint32_t len, uint32_t seed);
7
8 #endif