Algorithms_in_C  1.0.0
Set of algorithms implemented in C.
hash_djb2.c File Reference

DJB2 hash algorithm More...

#include <assert.h>
#include <inttypes.h>
#include <stdio.h>
Include dependency graph for hash_djb2.c:

Functions

uint64_t djb2 (const char *s)
 DJB2 algorithm implementation. More...
 
void test_djb2 (void)
 Test function for djb2. More...
 
int main ()
 Main function.
 

Detailed Description