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