quake2forge/qcommon/crc.h

7 lines
215 B
C
Raw Normal View History

2001-12-22 04:27:19 +00:00
/* 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);