From 28578b192d0828a9820983b5624b9bcc3577cd18 Mon Sep 17 00:00:00 2001 From: Soikk Date: Sat, 23 Jul 2022 01:46:24 +0200 Subject: Improved the database storage system. Added persistency. --- include/crc64.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 include/crc64.h (limited to 'include/crc64.h') diff --git a/include/crc64.h b/include/crc64.h new file mode 100644 index 0000000..7657b22 --- /dev/null +++ b/include/crc64.h @@ -0,0 +1,9 @@ +#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 + +uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l); + +#endif \ No newline at end of file -- cgit v1.2.3