blob: d849961eb2080cbbb4ab49e688340c70ecfbaa98 (
plain)
1
2
3
4
5
6
7
8
9
|
/* SPDX-License-Identifier: CC0-1.0
* Source: https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp */
#pragma once
#include <stdlib.h>
#include <stdint.h>
uint32_t hash(const char* data, size_t len);
|