Initializes the 16KB lookup tables. */
| 114 | |
| 115 | /* Initializes the 16KB lookup tables. */ |
| 116 | void crc64_init(void) { |
| 117 | crcspeed64native_init(_crc64, crc64_table); |
| 118 | } |
| 119 | |
| 120 | /* Compute crc64 */ |
| 121 | uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l) { |
no test coverage detected