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