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.
|
#ifndef _CRC_H
|
|
#define _CRC_H
|
|
#include <stdint.h>
|
|
#include <stdatomic.h>
|
|
|
|
#define _H_CRC_TABLE_SIZE 256
|
|
#define _H_CRC_ITERATIONS 8
|
|
|
|
unsigned long _h_crc32(unsigned long seed, const unsigned char* buffer,unsigned int len);
|
|
|
|
#endif /* _CRC_H */
|