1 2 3 4 5 6 7 8 9 10 11 12 13
// (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 <stddef.h> #include <stdint.h> uint32_t crc32(uint32_t crc, uint8_t *buf, size_t size); #endif