aboutsummaryrefslogtreecommitdiff
path: root/src/zlib-ng/adler32_fold.h
blob: 20aa1c7400b76a5dd7b48f1a736cd0cceef9d3f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* adler32_fold.h -- adler32 folding interface
 * Copyright (C) 2022 Adam Stylinski
 * For conditions of distribution and use, see copyright notice in zlib.h
 */

#ifndef ADLER32_FOLD_H_
#define ADLER32_FOLD_H_

Z_INTERNAL uint32_t adler32_fold_copy_c(uint32_t adler, uint8_t *dst, const uint8_t *src, size_t len);

#endif