Short doc for crc function

This commit is contained in:
Celine Mercier
2016-04-21 13:23:52 +02:00
parent 1a2fa0923c
commit 09597016fd

View File

@ -6,4 +6,9 @@
#include <stdint.h> #include <stdint.h>
/**
* @brief Generates and returns a 64-bit Cyclic Redundancy Check from a
* character string s of length l.
*/
uint64_t crc64(const char* s, uint64_t l); uint64_t crc64(const char* s, uint64_t l);