A simple CRC library used to verify configuration data

Fork of CRC by Andrew Lindsay

Revision:
0:28e16d33040f
Child:
2:53b7db1f47ea
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/crc.h	Tue May 14 21:54:06 2013 +0000
@@ -0,0 +1,9 @@
+
+#ifndef CRC_H
+#define CRC_H
+
+void CRC32Value(unsigned long &CRC, unsigned char c);
+unsigned long CalculateBlockCRC32(unsigned long ulCount, unsigned char *ucBuffer );
+
+#endif
+