diff options
Diffstat (limited to 'src/zlib.h')
-rw-r--r-- | src/zlib.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,8 +1,11 @@ /* - * Copyright (c) 2020, yzrh <yzrh@noema.org> + * Copyright (c) 2020-2021, yzrh <yzrh@noema.org> * * SPDX-License-Identifier: Apache-2.0 */ int strinflate(char **dst, int dst_size, const char * restrict src, int src_size); + +int strdeflate(char **dst, int *dst_size, + const char * restrict src, int src_size); |