You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*
|
|
|
* CRC.h
|
|
|
*
|
|
|
* Created on: 2022Äê3ÔÂ28ÈÕ
|
|
|
* Author: Laputa
|
|
|
*/
|
|
|
|
|
|
#ifndef CRC_H_
|
|
|
#define CRC_H_
|
|
|
|
|
|
#include "sys.h"
|
|
|
|
|
|
//extern unsigned long CRC32_Table[256];
|
|
|
extern UINT32 CRC32_Table[256];
|
|
|
unsigned int GetCrc32(unsigned char *InStr,unsigned int len, unsigned int value);
|
|
|
void Make_CRC32_Table(void);
|
|
|
|
|
|
#endif /* CRC_H_ */
|