From 09597016fddb2aae8a934b2960117e458a271ad8 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Thu, 21 Apr 2016 13:23:52 +0200 Subject: [PATCH] Short doc for crc function --- src/crc64.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/crc64.h b/src/crc64.h index 8835f59..717cafe 100644 --- a/src/crc64.h +++ b/src/crc64.h @@ -6,4 +6,9 @@ #include + +/** + * @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);