Comment cites the string hash algorithm (djb2)

"If you just want to have a good hash function,
and cannot wait, djb2 is one of the best string
hash functions I know."
This commit is contained in:
Rangi
2021-01-15 21:12:45 -05:00
committed by Eldred Habert
parent fb39c3a70e
commit d5a00cf634

View File

@@ -16,7 +16,9 @@
#include "extern/utf8decoder.h" #include "extern/utf8decoder.h"
/* /*
* Calculate the hash value for a string * Calculate the hash value for a string.
* Uses the djb2 algorithm (xor version).
* http://www.cse.yorku.ca/~oz/hash.html
*/ */
uint32_t calchash(const char *s) uint32_t calchash(const char *s)
{ {