
#ifndef MURMURHASH3_H
#define MURMURHASH3_H

#include <stdlib.h>

#include <stdint.h>

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

#endif

