bigbiff | 7b4c7a6 | 2015-01-01 19:44:14 -0500 | [diff] [blame] | 1 | #ifndef UTIL_LINUX_CRC64_H |
2 | #define UTIL_LINUX_CRC64_H | ||||
3 | |||||
4 | #include <sys/types.h> | ||||
5 | #include <stdint.h> | ||||
6 | |||||
7 | extern uint64_t crc64(uint64_t seed, const unsigned char *data, size_t len); | ||||
8 | |||||
9 | #endif |