bglibs
crc32c.h
1 #ifndef CRC32C__H__
2 #define CRC32C__H__
3 
4 #include "gcrc.h"
5 
6 #define CRC32CPOLY ((uint32)0x1EDC6F41UL)
7 #define CRC32CINIT ((uint32)0xFFFFFFFFUL)
8 #define CRC32CPOST ((uint32)0xFFFFFFFFUL)
9 
10 extern const uint32 crc32c_table[256];
11 #define crc32c_update(C,D,L) gcrc32rfl((C),(D),(L),crc32c_table)
12 #define crc32c_block(B,L) (crc32c_update(CRC32CINIT,(B),(L))^CRC32CPOST)
13 
14 #endif