winamp/qcommon/crc.h
Literally A Penguin 0bf99969fd
Quack 3
2024-09-25 15:39:25 -05:00

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);