Files
obitools3/src/crc64.h
2016-03-24 16:38:11 +01:00

10 lines
166 B
C

/**
* @file crc64.h
* @date March 24th 2016
* @brief Header file for CRC64 function.
*/
#include <stdint.h>
uint64_t crc64(const unsigned char* s, uint64_t l);