Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
Loading...
Searching...
No Matches
hash_sdbm.c File Reference

SDBM hash algorithm More...

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

Functions

uint64_t sdbm (const char *s)
 SDBM algorithm implementation.
 
void test_sdbm ()
 Test function for sdbm.
 
int main ()
 Main function.
 

Detailed Description

Function Documentation

◆ main()

int main ( void  )

Main function.

47{
48 test_sdbm();
49 return 0;
50}
void test_sdbm()
Test function for sdbm.
Definition hash_sdbm.c:34
Here is the call graph for this function: