summaryrefslogtreecommitdiffstats
path: root/src/opk.h
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2023-04-18 16:41:42 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2023-04-18 19:47:12 (EDT)
commitb65c075d13990383f30b27aeafacdd4575fafdee (patch)
treec338c3db137405b98bf74091d9c9965d5c92d7cf /src/opk.h
parent25ce512c39f578def257f81e10e22b06123a069d (diff)
ustar: Use linked list instead of varargs in seek
Also indicate when all sought member files are found.
Diffstat (limited to 'src/opk.h')
-rw-r--r--src/opk.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/opk.h b/src/opk.h
index 02ee090..1b7e681 100644
--- a/src/opk.h
+++ b/src/opk.h
@@ -20,6 +20,8 @@
#ifndef OPKG_OPK_OPK_H_
#define OPKG_OPK_OPK_H_
+#include "ustar.h"
+
struct opkg_opk_opk;
struct opkg_opk_opk *
@@ -29,7 +31,8 @@ int
opkg_opk_opk_init_inner(struct opkg_opk_opk *opk, const char *member);
int
-opkg_opk_opk_read_control(struct opkg_opk_opk *opk);
+opkg_opk_opk_read_control(struct opkg_opk_opk *opk,
+ struct opkg_opk_ustar_seek_name *names);
int
opkg_opk_opk_list_members(struct opkg_opk_opk *opk);