1 #ifndef _RAR_CRC_ 2 #define _RAR_CRC_ 3 4 // This function is only to intialize external CRC tables. We do not need to 5 // call it before calculating CRC32. 6 void InitCRC32(uint *CRCTab); 7 8 uint CRC32(uint StartCRC,const void *Addr,size_t Size); 9 10 #ifndef SFX_MODULE 11 ushort Checksum14(ushort StartCRC,const void *Addr,size_t Size); 12 #endif 13 14 15 #endif