1 #ifndef _CRC32_H 2 #define _CRC32_H 3 4 #include <stddef.h> 5 #include <stdint.h> 6 7 uint32_t crc32(const void *buf, size_t len); 8 9 #endif 10