mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-20 19:02:23 +00:00
Header guard for crc.h
This commit is contained in:
parent
6379c981f8
commit
88393d6cd6
1 changed files with 6 additions and 0 deletions
|
@ -24,7 +24,13 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#ifndef CO_CRC_H
|
||||
#define CO_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);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue