untested (and no possible retrieval) of CRC used to represent data in

AVL trees
This commit is contained in:
Celine Mercier
2016-03-24 16:38:11 +01:00
parent 58ac860cc7
commit 69856f18dd
5 changed files with 252 additions and 17 deletions

9
src/crc64.h Normal file
View File

@ -0,0 +1,9 @@
/**
* @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);