Header guard for crc.h

This commit is contained in:
Yamagi Burmeister 2010-08-31 09:07:30 +00:00
parent 6379c981f8
commit 88393d6cd6

View file

@ -24,7 +24,13 @@
* =======================================================================
*/
#ifndef CO_CRC_H
#define CO_CRC_H
void CRC_Init(unsigned short *crcvalue);
void CRC_ProcessByte(unsigned short *crcvalue, byte data);
unsigned short CRC_Value(unsigned short crcvalue);
unsigned short CRC_Block (byte *start, int count);
#endif