1 /* adler32_fold.h -- adler32 folding interface 2 * Copyright (C) 2022 Adam Stylinski 3 * For conditions of distribution and use, see copyright notice in zlib.h 4 */ 5 6 #ifndef ADLER32_FOLD_H_ 7 #define ADLER32_FOLD_H_ 8 9 Z_INTERNAL uint32_t adler32_fold_copy_c(uint32_t adler, uint8_t *dst, const uint8_t *src, size_t len); 10 11 #endif 12