aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-07-22 22:26:21 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-09-19 11:51:55 +0200
commitbfd932fb3470fa7250359da6ed5641182a10077c (patch)
treeaf54c3f9d5aa13e00bd922188106b04889ff2c91 /include
parentaccd38b7034f6b9e292d4191afb39322fe943486 (diff)
sqfs2tar: replace hierarchy extraction with nested iterators
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r--include/common.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/common.h b/include/common.h
index ca95ba6..ab6fccf 100644
--- a/include/common.h
+++ b/include/common.h
@@ -28,17 +28,8 @@
#include <stddef.h>
-typedef struct sqfs_hard_link_t {
- struct sqfs_hard_link_t *next;
- sqfs_u32 inode_number;
- char *target;
-} sqfs_hard_link_t;
-
void sqfs_perror(const char *file, const char *action, int error_code);
-int sqfs_tree_find_hard_links(const sqfs_tree_node_t *root,
- sqfs_hard_link_t **out);
-
/* A common implementation of the '--version' command line flag. */
void print_version(const char *progname);