blob: 6c9f36aefaeba7659e42cd1ddae06e96fe9b8da7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* 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);
|