10 lines
166 B
C
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);
|