]> git.ipfire.org Git - thirdparty/util-linux.git/blob - include/crc32.h
lib: add a generic crc32()
[thirdparty/util-linux.git] / include / crc32.h
1 #ifndef UL_NG_CRC32_H
2 #define UL_NG_CRC32_H
3
4 #include <stdint.h>
5
6 extern uint32_t crc32(uint32_t seed, const unsigned char *buf, size_t len);
7
8 #endif
9