Files
obitools3/src/crc64.h

10 lines
157 B
C
Raw Normal View History

/**
* @file crc64.h
* @date March 24th 2016
* @brief Header file for CRC64 function.
*/
#include <stdint.h>
2016-03-25 16:11:52 +01:00
uint64_t crc64(const char* s, uint64_t l);