aboutsummaryrefslogtreecommitdiff
path: root/bin/tar2sqfs/src/tar2sqfs.h
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-09-21 15:53:14 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-10-24 15:57:18 +0200
commit7f89eb3cfff465cf32d03a2ae6919252eae67e9b (patch)
treeed776d71106000dfa34ad4de3402fff6fea6c56a /bin/tar2sqfs/src/tar2sqfs.h
parentc4ab32879df8b5e83b0ebd091ce2c750f53f5633 (diff)
libutil: add a string list helper to replace some of the adhoc ones
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'bin/tar2sqfs/src/tar2sqfs.h')
-rw-r--r--bin/tar2sqfs/src/tar2sqfs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/tar2sqfs/src/tar2sqfs.h b/bin/tar2sqfs/src/tar2sqfs.h
index d2049f2..a5b1089 100644
--- a/bin/tar2sqfs/src/tar2sqfs.h
+++ b/bin/tar2sqfs/src/tar2sqfs.h
@@ -12,6 +12,7 @@
#include "compat.h"
#include "util/util.h"
+#include "util/strlist.h"
#include "tar/tar.h"
#include "tar/format.h"
#include "xfrm/compress.h"
@@ -29,8 +30,7 @@ extern bool no_tail_pack;
extern bool no_symlink_retarget;
extern sqfs_writer_cfg_t cfg;
extern char *root_becomes;
-extern char **excludedirs;
-extern size_t num_excludedirs;
+extern strlist_t excludedirs;
void process_args(int argc, char **argv);