summaryrefslogtreecommitdiff
path: root/src/common/hattrie/murmurhash3.h
blob: d0e5812fb8333f7ec9c015860f2b0b39276c9b25 (plain)
1
2
3
4
5
6
7
8
9
10

#ifndef MURMURHASH3_H
#define MURMURHASH3_H

#include <stdlib.h>
#include <stdint.h>

uint32_t hash(const char* data, size_t len);

#endif