blob: 47ee7e230b73d4fb13e54ff87d4d130b67df9ae6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _RAR_CRC_
#define _RAR_CRC_
extern uint CRCTab[256];
void InitCRC();
uint CRC(uint StartCRC,const void *Addr,uint Size);
ushort OldCRC(ushort StartCRC,const void *Addr,uint Size);
#endif
|