From c52dd373c6aae88a4640981f5746e7f727367d15 Mon Sep 17 00:00:00 2001 From: nbd Date: Mon, 20 Aug 2007 16:12:24 +0000 Subject: cleanup mtd, implement jffs2write - one step closer to config preserving system upgrades git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8444 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/mtd/src/crc32.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 package/mtd/src/crc32.h (limited to 'package/mtd/src/crc32.h') diff --git a/package/mtd/src/crc32.h b/package/mtd/src/crc32.h new file mode 100644 index 000000000..ee3145bc1 --- /dev/null +++ b/package/mtd/src/crc32.h @@ -0,0 +1,19 @@ +#ifndef CRC32_H +#define CRC32_H + +#include + +extern const uint32_t crc32_table[256]; + +/* Return a 32-bit CRC of the contents of the buffer. */ + + static inline uint32_t +crc32(uint32_t val, const void *ss, int len) +{ + const unsigned char *s = ss; + while (--len >= 0) + val = crc32_table[(val ^ *s++) & 0xff] ^ (val >> 8); + return val; +} + +#endif -- cgit v1.2.3