90#define INITIAL_CRC64 0xffffffffffffffffULL
107extern uint64_t
update_crc64(
const void* buf, uint32_t len, uint64_t crc);
118extern uint64_t
crc64(
const void* buf, uint32_t len);
129extern uint64_t
CRC64(
const char* t);
uint64_t update_crc64(const void *buf, uint32_t len, uint64_t crc)
Updates a running CRC64 checksum with len bytes from buf.
uint64_t CRC64(const char *t)
Computes the CRC64 of a null-terminated string t.
uint64_t crc64(const void *buf, uint32_t len)
Computes the CRC64 of len bytes starting at buf.