]> git.ipfire.org Git - thirdparty/util-linux.git/blob - include/crc32.h
libblkid: (zfs) fix compiler warning [-Wmaybe-uninitialized]
[thirdparty/util-linux.git] / include / crc32.h
1 #ifndef UL_NG_CRC32_H
2 #define UL_NG_CRC32_H
3
4 #include <sys/types.h>
5 #include <stdint.h>
6
7 extern uint32_t ul_crc32(uint32_t seed, const unsigned char *buf, size_t len);
8 extern uint32_t ul_crc32_exclude_offset(uint32_t seed, const unsigned char *buf, size_t len,
9 size_t exclude_off, size_t exclude_len);
10
11 #endif
12