Quake-2

Quake 2 GPL Source Release
Log | Files | Refs

crc.h (215B)


      1 /* crc.h */
      2 
      3 void CRC_Init(unsigned short *crcvalue);
      4 void CRC_ProcessByte(unsigned short *crcvalue, byte data);
      5 unsigned short CRC_Value(unsigned short crcvalue);
      6 unsigned short CRC_Block (byte *start, int count);