You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
247 B

#ifndef _CRC_H
#define _CRC_H
#include <stdint.h>
#include <stdatomic.h>
#define _EN_CRC_TABLE_SIZE 256
#define _EN_CRC_ITERATIONS 8
unsigned long _en_crc32(unsigned long seed, const unsigned char* buffer,unsigned int len);
#endif /* _CRC_H */