libz-sys 1.1.11

Low-level bindings to the system libz library (also known as zlib).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* adler32_fold.c -- adler32 folding interface
 * Copyright (C) 2022 Adam Stylinski
 * For conditions of distribution and use, see copyright notice in zlib.h
 */

#include "zbuild.h"
#include "functable.h"
#include "adler32_fold.h"

#include <limits.h>

Z_INTERNAL uint32_t adler32_fold_copy_c(uint32_t adler, uint8_t *dst, const uint8_t *src, size_t len) {
    adler = functable.adler32(adler, src, len);
    memcpy(dst, src, len);
    return adler;
}