mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 15:21:48 +00:00
e2f5e8fe34
We'll need 'common' for something else.
20 lines
358 B
C
20 lines
358 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);
|
|
|
|
inline unsigned int MakeKey(const char* s)
|
|
{
|
|
if (s == NULL)
|
|
{
|
|
return 0;
|
|
}
|
|
return SuperFastHashI(s, strlen(s));
|
|
}
|
|
|
|
inline unsigned int MakeKey(const char* s, size_t len)
|
|
{
|
|
return SuperFastHashI(s, len);
|
|
}
|
|
|