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