Files
Linux_Drivers/build/tools/common/emmc_tool/crc.h
sam.xiang a4f213ceb0 [build] add cvitek build scripts
Change-Id: If63ce4a669e5d4d72b8e3b9253336dd99bf74c30
2023-03-10 20:35:59 +08:00

10 lines
142 B
C

#ifndef _CRC_H_
#define _CRC_H_
#include <stdint.h>
uint32_t crc32(uint32_t crc, const uint8_t *buf, uint32_t len);
#endif /* _CRC_H_ */