libparted 3.6
Loading...
Searching...
No Matches
crc32.in.h
Go to the documentation of this file.
1/*
2 libparted - a library for manipulating disk partitions
3 Copyright (C) 1998-2000, 2007, 2009-2014, 2019-2023 Free Software
4 Foundation, Inc.
5
6 crc32.h
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20*/
21
22#ifndef _CRC32_H
23#define _CRC32_H
24
25#include <stdint.h>
26
27/*
28 * This computes a 32 bit CRC of the data in the buffer, and returns the CRC.
29 * The polynomial used is 0xedb88320.
30 */
31
32extern uint32_t __efi_crc32 (const void *buf, unsigned long len,
33 uint32_t seed) _GL_ATTRIBUTE_PURE;
34
35#endif /* _CRC32_H */
uint32_t __efi_crc32(const void *buf, unsigned long len, uint32_t seed) _GL_ATTRIBUTE_PURE
Definition: efi_crc32.c:112