mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 13:42:21 +00:00
6 lines
215 B
C
6 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);
|