summaryrefslogtreecommitdiff
path: root/include/ouroboros/crc32.h
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2017-01-14 13:32:23 +0100
committerSander Vrijders <sander.vrijders@intec.ugent.be>2017-01-14 13:32:23 +0100
commit361e321f6c7011040805a7f3d3cbdd8dfae71c3f (patch)
tree9afdc7de2c7a4db305ca30aa2b6eb7891f96a528 /include/ouroboros/crc32.h
parent6a8f0d0a9aab073e2e79a06322e4f83e69409d05 (diff)
parentc18011259423f5d1cea7dfa67093c888c4882c1e (diff)
downloadouroboros-361e321f6c7011040805a7f3d3cbdd8dfae71c3f.tar.gz
ouroboros-361e321f6c7011040805a7f3d3cbdd8dfae71c3f.zip
Merged in dstaesse/ouroboros/be-crc32 (pull request #347)
lib: Move CRC32 implementation to library
Diffstat (limited to 'include/ouroboros/crc32.h')
-rw-r--r--include/ouroboros/crc32.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/ouroboros/crc32.h b/include/ouroboros/crc32.h
new file mode 100644
index 00000000..3c7721de
--- /dev/null
+++ b/include/ouroboros/crc32.h
@@ -0,0 +1,33 @@
+/*
+ * Ouroboros - Copyright (C) 2016 - 2017
+ *
+ * 32-bit Cyclic Redundancy Check
+ *
+ * Sander Vrijders <sander.vrijders@intec.ugent.be>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ */
+
+#ifndef OUROBOROS_CRC32_H
+#define OUROBOROS_CRC32_H
+
+#include <stdint.h>
+#include <stddef.h>
+
+void crc32(uint32_t * crc,
+ const void * buf,
+ size_t len);
+
+#endif /* OUROBOROS_CRC32_H */