00001
00009 #ifndef NMXP_CRC32_H
00010 #define NMXP_CRC32_H 1
00011
00012 #include <stdint.h>
00013
00014 #define POLYNOMIAL (uint32_t)0xedb88320
00015
00018 uint32_t crc32(uint32_t crc32val, const char *buf, uint32_t len);
00019
00020 #endif
00021
00022