From 7f3fab3aab6a4de059277330fa52049033f022fc Mon Sep 17 00:00:00 2001 From: Enrique Date: Mon, 6 Jan 2025 16:40:25 +0100 Subject: Initial commit --- src/crc64/crc64.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 src/crc64/crc64.h (limited to 'src/crc64/crc64.h') diff --git a/src/crc64/crc64.h b/src/crc64/crc64.h new file mode 100755 index 0000000..e031e76 --- /dev/null +++ b/src/crc64/crc64.h @@ -0,0 +1,11 @@ +#ifndef CRC64_H +#define CRC64_H + +// Header file created because of project necessity +// Source for c file: https://github.com/srned/baselib/blob/master/crc64.c + +#include + +uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l); + +#endif -- cgit v1.2.3