Blame


1 1411938b 2018-02-12 stsp /*
2 1411938b 2018-02-12 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 1411938b 2018-02-12 stsp *
4 1411938b 2018-02-12 stsp * Permission to use, copy, modify, and distribute this software for any
5 1411938b 2018-02-12 stsp * purpose with or without fee is hereby granted, provided that the above
6 1411938b 2018-02-12 stsp * copyright notice and this permission notice appear in all copies.
7 1411938b 2018-02-12 stsp *
8 1411938b 2018-02-12 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 1411938b 2018-02-12 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 1411938b 2018-02-12 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 1411938b 2018-02-12 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 1411938b 2018-02-12 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 1411938b 2018-02-12 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 1411938b 2018-02-12 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 1411938b 2018-02-12 stsp */
16 1411938b 2018-02-12 stsp
17 1411938b 2018-02-12 stsp struct got_zstream_buf {
18 1411938b 2018-02-12 stsp z_stream z;
19 1411938b 2018-02-12 stsp char *inbuf;
20 1411938b 2018-02-12 stsp size_t inlen;
21 1411938b 2018-02-12 stsp char *outbuf;
22 1411938b 2018-02-12 stsp size_t outlen;
23 1411938b 2018-02-12 stsp int flags;
24 1411938b 2018-02-12 stsp #define GOT_ZSTREAM_F_HAVE_MORE 0x01
25 1411938b 2018-02-12 stsp };
26 1411938b 2018-02-12 stsp
27 1411938b 2018-02-12 stsp const struct got_error *got_inflate_init(struct got_zstream_buf *, size_t);
28 1411938b 2018-02-12 stsp const struct got_error *got_inflate_read(struct got_zstream_buf *, FILE *,
29 1411938b 2018-02-12 stsp size_t *);
30 1411938b 2018-02-12 stsp void got_inflate_end(struct got_zstream_buf *);
31 1411938b 2018-02-12 stsp const struct got_error *got_inflate_to_mem(uint8_t **, size_t *, FILE *);
32 1411938b 2018-02-12 stsp const struct got_error *got_inflate_to_file(size_t *, FILE *, FILE *);