mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-04-21 11:47:13 +02:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
26 lines
610 B
C
26 lines
610 B
C
/* 7zCrc.h -- CRC32 calculation
|
|
2009-11-21 : Igor Pavlov : Public domain */
|
|
|
|
#ifndef __7Z_CRC_H
|
|
#define __7Z_CRC_H
|
|
|
|
#include "Types.h"
|
|
|
|
EXTERN_C_BEGIN
|
|
|
|
extern UInt32 g_CrcTable[];
|
|
|
|
/* Call CrcGenerateTable one time before other CRC functions */
|
|
void MY_FAST_CALL CrcGenerateTable(void);
|
|
|
|
#define CRC_INIT_VAL 0xFFFFFFFF
|
|
#define CRC_GET_DIGEST(crc) ((crc) ^ CRC_INIT_VAL)
|
|
#define CRC_UPDATE_BYTE(crc, b) (g_CrcTable[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8))
|
|
|
|
UInt32 MY_FAST_CALL CrcUpdate(UInt32 crc, const void *data, size_t size);
|
|
UInt32 MY_FAST_CALL CrcCalc(const void *data, size_t size);
|
|
|
|
EXTERN_C_END
|
|
|
|
#endif
|