A simple CRC library used to verify configuration data

Fork of CRC by Andrew Lindsay

crc.h

Committer:
sam_grove
Date:
2013-05-14
Revision:
0:28e16d33040f
Child:
2:53b7db1f47ea

File content as of revision 0:28e16d33040f:


#ifndef CRC_H
#define CRC_H

void CRC32Value(unsigned long &CRC, unsigned char c);
unsigned long CalculateBlockCRC32(unsigned long ulCount, unsigned char *ucBuffer );

#endif