mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
323 B
12 lines
323 B
11 months ago
|
/* 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
|