MXC-A36_2024.04.17/MXC-Screen_display/components/modules/crc/crc32.h

15 lines
201 B
C
Raw Permalink Normal View History

2024-02-28 16:45:49 +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