mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-04 04:05:31 +00:00
13 lines
181 B
C
13 lines
181 B
C
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void preload_crc();
|
|
uint32_t compute_crc_32(unsigned char *buffer, unsigned long length);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|