libparted
3.6
Loading...
Searching...
No Matches
include
parted
crc32.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
32
extern
uint32_t
__efi_crc32
(
const
void
*buf,
unsigned
long
len,
33
uint32_t seed)
34
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
35
__attribute
((__pure__))
36
#endif
37
;
38
39
#endif
/* _CRC32_H */
__efi_crc32
uint32_t __efi_crc32(const void *buf, unsigned long len, uint32_t seed)
Definition:
efi_crc32.c:112
__attribute
#define __attribute(arg)
Definition:
parted.h:32
Generated by
1.9.6