2014-11-22 12:32:56 +00:00
|
|
|
#ifndef crc32_h_
|
|
|
|
#define crc32_h_
|
2007-01-29 01:18:16 +00:00
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
#include "compat.h"
|
|
|
|
|
2014-11-26 04:39:23 +00:00
|
|
|
#ifdef __cplusplus
|
2007-01-29 01:18:16 +00:00
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-09-30 04:15:04 +00:00
|
|
|
#define POLY 0xEDB88320
|
2009-12-14 05:23:29 +00:00
|
|
|
|
2014-09-30 04:15:04 +00:00
|
|
|
#ifdef BITNESS64
|
|
|
|
extern uint32_t crc32table[8][256];
|
|
|
|
#else
|
|
|
|
extern uint32_t crc32table[4][256];
|
|
|
|
#endif
|
2009-12-14 05:23:29 +00:00
|
|
|
|
2014-10-01 17:09:54 +00:00
|
|
|
extern uint32_t Bcrc32(const void* data, size_t length, uint32_t crc);
|
2014-09-30 04:15:04 +00:00
|
|
|
extern void initcrc32table(void);
|
2007-01-29 01:18:16 +00:00
|
|
|
|
2014-11-26 04:39:23 +00:00
|
|
|
#ifdef __cplusplus
|
2007-01-29 01:18:16 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|