From de1c4780206373f857a877dfed3940de3cbef2c5 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 4 Mar 2010 14:16:24 +0100 Subject: Add CRC32 algorithm --- crc32/crc32.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 crc32/crc32.h (limited to 'crc32/crc32.h') diff --git a/crc32/crc32.h b/crc32/crc32.h new file mode 100644 index 0000000..6ea89b0 --- /dev/null +++ b/crc32/crc32.h @@ -0,0 +1,8 @@ +#ifndef _CRC32_H_ +#define _CRC32_H_ + +#include + +extern uint32_t crc32(uint32_t crc, const uint8_t *buf, size_t len); + +#endif /* _CRC32_H_ */ -- cgit v1.2.3-54-g00ecf