mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 13:31:27 +00:00
8 lines
233 B
C
8 lines
233 B
C
|
#pragma once
|
||
|
#include <stdint.h>
|
||
|
|
||
|
uint32_t SuperFastHash (const char *data, size_t len);
|
||
|
uint32_t SuperFastHashI (const char *data, size_t len);
|
||
|
unsigned int MakeKey (const char *s);
|
||
|
unsigned int MakeKey (const char *s, size_t len);
|