1 /* 2 * Copyright 2013, Axel Dörfler, axeld@pinc-software.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef CRC32_H 6 #define CRC32_H 7 8 9 #include <SupportDefs.h> 10 11 12 uint32 crc32(const uint8* buffer, size_t size); 13 14 15 #endif // CRC32_H 16