MXC_A39_20240320/SW/components/modules/crc/crc32.h

15 lines
201 B
C
Raw Normal View History

2024-03-07 16:46:43 +08:00
#ifndef __CRC32_H__
#define __CRC32_H__
#ifdef __cplusplus
extern "C" {
#endif
unsigned int crc32(unsigned int crc, const unsigned char *buf, unsigned int len);
#ifdef __cplusplus
}
#endif
#endif