bigbiff bigbiff | e60683a | 2013-02-22 20:55:50 -0500 | [diff] [blame] | 1 | #ifndef UL_NG_CRC32_H |
2 | #define UL_NG_CRC32_H | ||||
3 | |||||
bigbiff | 7b4c7a6 | 2015-01-01 19:44:14 -0500 | [diff] [blame] | 4 | #include <sys/types.h> |
bigbiff bigbiff | e60683a | 2013-02-22 20:55:50 -0500 | [diff] [blame] | 5 | #include <stdint.h> |
6 | |||||
7 | extern uint32_t crc32(uint32_t seed, const unsigned char *buf, size_t len); | ||||
8 | |||||
9 | #endif | ||||
10 |