1
0
Fork 0
util-linux/include/crc64.h
Daniel Baumann c36e531662
Adding upstream version 2.41.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 11:26:35 +02:00

16 lines
403 B
C

/* SPDX-License-Identifier: MIT
*
* This file is licensed under the MIT License.
*/
#ifndef UL_CRC64_H
#define UL_CRC64_H
#include <sys/types.h>
#include <stdint.h>
extern uint64_t ul_crc64_ecma(const unsigned char *input_str, size_t num_bytes);
extern uint64_t ul_crc64_we(const unsigned char *input_str, size_t num_bytes);
extern uint64_t ul_update_crc64(uint64_t crc, unsigned char c);
#endif