9 lines
338 B
C
9 lines
338 B
C
|
|
/* *
|
||
|
|
* 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
|