20 lines
212 B
C
20 lines
212 B
C
|
|
|
|||
|
|
#ifndef __CRC32_H__
|
|||
|
|
#define __CRC32_H__
|
|||
|
|
|
|||
|
|
/*
|
|||
|
|
CRC32 <EFBFBD>㷨ģ<EFBFBD><EFBFBD>
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include "afxdef.h"
|
|||
|
|
|
|||
|
|
#define CRC32_INIT 0xffffffff // crc<72><63>ֵ
|
|||
|
|
|
|||
|
|
|
|||
|
|
u32 AddCrc32(u32 crcword, u8 dat);
|
|||
|
|
u32 CalcCrc32(u8 * pBuf, int lenBuf);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endif
|