aboutsummaryrefslogtreecommitdiff
path: root/unpack/unsquashfs.h
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-05-02 16:30:33 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-05-03 21:45:46 +0200
commit2aa2f13131663afa0d13259365f824b05e9a2f02 (patch)
treeb5b8d7d1f46717d5b49278ec300f769e68641fd6 /unpack/unsquashfs.h
parent03916fcbb453684fa13135e2b46f5a82d13d78a7 (diff)
unsquashfs: add argument processing, file listing parameter
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'unpack/unsquashfs.h')
-rw-r--r--unpack/unsquashfs.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/unpack/unsquashfs.h b/unpack/unsquashfs.h
index 5553012..52b3889 100644
--- a/unpack/unsquashfs.h
+++ b/unpack/unsquashfs.h
@@ -7,10 +7,14 @@
#include "compress.h"
#include "id_table.h"
#include "fstree.h"
+#include "config.h"
+#include "util.h"
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
+#include <getopt.h>
+#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
@@ -21,4 +25,6 @@ tree_node_t *tree_node_from_inode(sqfs_inode_generic_t *inode,
int read_fstree(fstree_t *out, int fd, sqfs_super_t *super, compressor_t *cmp);
+void list_files(tree_node_t *node);
+
#endif /* UNSQUASHFS_H */