9 lines
176 B
C
9 lines
176 B
C
#ifndef __CRC32_H__
|
|
#define __CRC32_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
// U-Boot标准CRC32计算函数
|
|
uint32_t crc32(uint32_t crc, const unsigned char *buf, unsigned int len);
|
|
|
|
#endif |