libhash/hash/djb2.h
2025-09-15 15:50:26 +02:00

7 lines
119 B
C

#include <stdint.h>
/*
* Simple hash function djb2, as in Daniel J. Berenstein.
*/
uint64_t djb2(const char *str);