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