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/crc32.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/crc32.h (limited to 'include/crc32.h') diff --git a/include/crc32.h b/include/crc32.h new file mode 100644 index 0000000..81c7703 --- /dev/null +++ b/include/crc32.h @@ -0,0 +1,16 @@ +/* + * No copyright is claimed. This code is in the public domain; do with it what + * you wish. + */ +#ifndef UL_CRC32_H +#define UL_CRC32_H + +#include +#include + +extern uint32_t ul_crc32(uint32_t seed, const unsigned char *buf, size_t len); +extern uint32_t ul_crc32_exclude_offset(uint32_t seed, const unsigned char *buf, size_t len, + size_t exclude_off, size_t exclude_len); + +#endif + -- cgit v1.2.3