mirror of
https://github.com/stevenhowes/Quake-2.git
synced 2026-05-27 00:03:41 +01:00
7 lines
215 B
C
7 lines
215 B
C
/* 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);
|