// (C) 2016 Joshua Allen, MIT/x11 License. // //All MIT/x11 Licensed Code in this file may be relicensed freely under the GPL or LGPL licenses. #ifndef CRC32_H #define CRC32_H #include #include uint32_t crc32(uint32_t crc, uint8_t *buf, size_t size); #endif