26 lines
206 B
C
Raw Normal View History

2024-01-16 10:46:17 +08:00
#ifndef CRC32_H_
#define CRC32_H_
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
void CRC32_Init(void);
uint32_t CRC32_GetRunTimeCRC32(uint8_t *pBuf ,uint16_t length);
#endif