RetroArch/cheevos/hash.c
2020-05-21 23:23:01 +02:00

13 lines
253 B
C

#include "hash.h"
uint32_t rcheevos_djb2(const char* str, size_t length)
{
const unsigned char* aux = (const unsigned char*)str;
uint32_t hash = 5381;
while (length--)
hash = ( hash << 5 ) + hash + *aux++;
return hash;
}