crc.h 215 B

1234567
  1. /* crc.h */
  2. void CRC_Init(unsigned short *crcvalue);
  3. void CRC_ProcessByte(unsigned short *crcvalue, byte data);
  4. unsigned short CRC_Value(unsigned short crcvalue);
  5. unsigned short CRC_Block (byte *start, int count);