inwudriver-weibo/boot/flashboot/include/crc32.h

9 lines
338 B
C
Raw Permalink Normal View History

/* *
* Copyright (c) CompanyNameMagicTag 2018-2019. All rights reserved.
* Description: This file is derived from crc32.c from the zlib-1.1.3 distribution. compute the CRC-32 of a data stream
*/
#ifndef __CRC32_H__
#define __CRC32_H__
unsigned int uapi_crc32(unsigned int crc, const unsigned char *p, unsigned int len);
#endif