From cfe5e3905201349e9cf3f95d52ff4bd100bde37d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 21:10:49 +0200 Subject: Adding upstream version 2.39.3. Signed-off-by: Daniel Baumann --- include/crc64.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 include/crc64.h (limited to 'include/crc64.h') diff --git a/include/crc64.h b/include/crc64.h new file mode 100644 index 0000000..7cd2c4c --- /dev/null +++ b/include/crc64.h @@ -0,0 +1,12 @@ +#ifndef UL_CRC64_H +#define UL_CRC64_H + +#include +#include + +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 + -- cgit v1.2.3