Imported Upstream version 0.7.12
[platform/upstream/libsolv.git] / ext / solv_zchunk.h
1 /*
2  * Copyright (c) 2018, SUSE LLC.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 struct solv_zchunk;
9
10 extern struct solv_zchunk *solv_zchunk_open(FILE *fp, unsigned int streamid);
11 extern ssize_t solv_zchunk_read(struct solv_zchunk *zck, char *buf, size_t len);
12 extern int solv_zchunk_close(struct solv_zchunk *zck);
13