blob: 40475d56f19a308cb097436b2f04f9270ef63496 [file] [log] [blame]
bigbiff7b4c7a62015-01-01 19:44:14 -05001#ifndef UTIL_LINUX_CRC64_H
2#define UTIL_LINUX_CRC64_H
3
4#include <sys/types.h>
5#include <stdint.h>
6
7extern uint64_t crc64(uint64_t seed, const unsigned char *data, size_t len);
8
9#endif