xref: /haiku/src/add-ons/kernel/partitioning_systems/gpt/crc32.h (revision 25a7b01d15612846f332751841da3579db313082)
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