From: Michael Schroeder Date: Fri, 13 Jul 2018 09:58:58 +0000 (+0200) Subject: Add missing solv_zchunk.h file X-Git-Tag: 0.6.35~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b3e5ec64d775dbda5dbafec00274f92b7bd640e;p=thirdparty%2Flibsolv.git Add missing solv_zchunk.h file Oops. Should look more carful at the untracked files list. --- diff --git a/ext/solv_zchunk.h b/ext/solv_zchunk.h new file mode 100644 index 00000000..13a9b5d6 --- /dev/null +++ b/ext/solv_zchunk.h @@ -0,0 +1,13 @@ +/* + * Copyright (c) 2018, SUSE LLC. + * + * This program is licensed under the BSD license, read LICENSE.BSD + * for further information + */ + +struct solv_zchunk; + +extern struct solv_zchunk *solv_zchunk_open(FILE *fp); +extern ssize_t solv_zchunk_read(struct solv_zchunk *zck, char *buf, size_t len); +extern int solv_zchunk_close(struct solv_zchunk *zck); +