#ifndef __CRC32_H__ #define __CRC32_H__ #include // U-Boot标准CRC32计算函数 uint32_t crc32(uint32_t crc, const unsigned char *buf, unsigned int len); #endif