Skip to content

Instantly share code, notes, and snippets.

@creadone
Created February 7, 2022 20:25
Show Gist options
  • Save creadone/6748828aa35de0da48206ad5dab1ef06 to your computer and use it in GitHub Desktop.
Save creadone/6748828aa35de0da48206ad5dab1ef06 to your computer and use it in GitHub Desktop.
unsigned int FNV1aHash (char *buf)
{
unsigned int hval = 0x811c9dc5;
while (*buf)
{
hval ^= (unsigned int)*buf++;
hval *= FNV_32_PRIME;
}
return hval;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment