You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
146 B

#ifndef _CRC64_H
#define _CRC64_H
#include <stdint.h>
uint64_t crc64(uint64_t crc, const unsigned char * s, uint64_t l);
#endif /* _CRC64_H */