Newer
Older
/* 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);
Self sign-up has been disabled due to increased spam activity. If you want to get access, please send an email to a project owner (preferred) or at gitlab(at)nic(dot)cz. We apologize for the inconvenience.
/* 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);