2007-08-21 00:12:24 +08:00
|
|
|
#ifndef CRC32_H
|
|
|
|
#define CRC32_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
extern const uint32_t crc32_table[256];
|
|
|
|
|
|
|
|
/* Return a 32-bit CRC of the contents of the buffer. */
|
|
|
|
|
2010-03-28 01:38:30 +08:00
|
|
|
static inline uint32_t
|
2007-08-21 00:12:24 +08:00
|
|
|
crc32(uint32_t val, const void *ss, int len)
|
|
|
|
{
|
|
|
|
const unsigned char *s = ss;
|
|
|
|
while (--len >= 0)
|
|
|
|
val = crc32_table[(val ^ *s++) & 0xff] ^ (val >> 8);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2010-03-28 01:38:30 +08:00
|
|
|
static inline unsigned int crc32buf(char *buf, size_t len)
|
|
|
|
{
|
|
|
|
return crc32(0xFFFFFFFF, buf, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-08-21 00:12:24 +08:00
|
|
|
#endif
|