Files
obitools3/src/crc64.h

15 lines
280 B
C
Raw Normal View History

/**
* @file crc64.h
* @date March 24th 2016
* @brief Header file for CRC64 function.
*/
#include <stdint.h>
2016-04-21 13:23:52 +02:00
/**
* @brief Generates and returns a 64-bit Cyclic Redundancy Check from a
* character string s of length l.
*/
2016-03-25 16:11:52 +01:00
uint64_t crc64(const char* s, uint64_t l);