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

32-bit CRC hash algorithm More...

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

Functions

uint32_t crc32 (const char *s)
 32-bit CRC algorithm implementation
 
void test_crc32 ()
 Test function for crc32.
 
int main ()
 Main function.
 

Detailed Description

32-bit CRC hash algorithm

Author
Christian Bender

Function Documentation

◆ main()

int main ( void  )

Main function.

55{
56 test_crc32();
57 return 0;
58}
void test_crc32()
Test function for crc32.
Definition hash_crc32.c:42
Here is the call graph for this function: