aboutsummaryrefslogtreecommitdiff
path: root/include/crc64.h
diff options
context:
space:
mode:
authorSoikk2022-07-23 01:46:24 +0200
committerSoikk2022-07-23 01:46:24 +0200
commit28578b192d0828a9820983b5624b9bcc3577cd18 (patch)
tree2f30b1730f30a7eeee80995ee3984c10f5bdc2ff /include/crc64.h
parent377dc104be127291ede5b32640c23eea0ba6791a (diff)
downloadsoikk-DB-28578b192d0828a9820983b5624b9bcc3577cd18.tar.xz
soikk-DB-28578b192d0828a9820983b5624b9bcc3577cd18.tar.zst
Improved the database storage system. Added persistency.
Diffstat (limited to 'include/crc64.h')
-rw-r--r--include/crc64.h9
1 files changed, 9 insertions, 0 deletions
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