mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
6904101c44
== DETAILS Really simple code cleanup, because my editor flags trailing whitespaces and it's pretty annoying.
30 lines
662 B
C
30 lines
662 B
C
/* 7zCrc.h -- CRC32 calculation
|
|
2009-11-21 : Igor Pavlov : Public domain */
|
|
|
|
#ifndef __7Z_CRC_H
|
|
#define __7Z_CRC_H
|
|
|
|
#include "7zTypes.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern uint32_t 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_t MY_FAST_CALL CrcUpdate(uint32_t crc, const void *data, size_t size);
|
|
uint32_t MY_FAST_CALL CrcCalc(const void *data, size_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|