]> git.ipfire.org Git - thirdparty/libsolv.git/commitdiff
Add missing solv_zchunk.h file
authorMichael Schroeder <mls@suse.de>
Fri, 13 Jul 2018 09:58:58 +0000 (11:58 +0200)
committerMichael Schroeder <mls@suse.de>
Fri, 13 Jul 2018 09:58:58 +0000 (11:58 +0200)
Oops. Should look more carful at the untracked files list.

ext/solv_zchunk.h [new file with mode: 0644]

diff --git a/ext/solv_zchunk.h b/ext/solv_zchunk.h
new file mode 100644 (file)
index 0000000..13a9b5d
--- /dev/null
@@ -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);
+