#ifndef CRC32_H_ #define CRC32_H_ #include <stdint.h> uint32_t crc32(uint32_t r, void* buf, int size); #endif