CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
murmur.h
1#pragma once
2
3#include <cx/cx.h>
4
5CX_C_BEGIN
6
7uint32 hashMurmur3(_In_reads_bytes_(len) const uint8* key, size_t len);
8uint32 hashMurmur3i(_In_reads_bytes_(len) const uint8* key, size_t len);
9uint32 hashMurmur3Str(_In_opt_ strref s);
10uint32 hashMurmur3Stri(_In_opt_ strref s);
11
12CX_C_END