Compute crc64 */
| 119 | |
| 120 | /* Compute crc64 */ |
| 121 | uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l) { |
| 122 | return crcspeed64native(crc64_table, crc, (void *) s, l); |
| 123 | } |
| 124 | |
| 125 | /* Test main */ |
| 126 | #ifdef REDIS_TEST |
no test coverage detected