Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
|
#include <assert.h>
#include <inttypes.h>
#include <stdio.h>
Functions | |
uint64_t | djb2 (const char *s) |
DJB2 algorithm implementation. More... | |
void | test_djb2 (void) |
Test function for djb2. More... | |
int | main () |
Main function. More... | |