mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
7 lines
233 B
C
7 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);
|