aboutsummaryrefslogtreecommitdiff
path: root/bin/tar2sqfs/tar2sqfs.h
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-01-31 11:21:30 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-01-31 13:51:49 +0100
commitcdccc69c62579b0c13b35fad0728079652b8f3c9 (patch)
tree9fa54c710f73c5e08a9c8466e7a712eb63ee07ac /bin/tar2sqfs/tar2sqfs.h
parent2182129c8f359c4fa1390eaba7a65b595ccd4182 (diff)
Move library source into src sub-directory
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'bin/tar2sqfs/tar2sqfs.h')
-rw-r--r--bin/tar2sqfs/tar2sqfs.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/bin/tar2sqfs/tar2sqfs.h b/bin/tar2sqfs/tar2sqfs.h
deleted file mode 100644
index a21774b..0000000
--- a/bin/tar2sqfs/tar2sqfs.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/* SPDX-License-Identifier: GPL-3.0-or-later */
-/*
- * tar2sqfs.h
- *
- * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
- */
-#ifndef TAR2SQFS_H
-#define TAR2SQFS_H
-
-#include "config.h"
-#include "common.h"
-#include "compat.h"
-
-#include "util/util.h"
-#include "tar/tar.h"
-#include "tar/format.h"
-#include "xfrm/compress.h"
-#include "io/xfrm.h"
-
-#include <stdlib.h>
-#include <getopt.h>
-#include <string.h>
-#include <stdio.h>
-#include <errno.h>
-
-/* options.c */
-extern bool dont_skip;
-extern bool keep_time;
-extern bool no_tail_pack;
-extern bool no_symlink_retarget;
-extern sqfs_writer_cfg_t cfg;
-extern char *root_becomes;
-
-void process_args(int argc, char **argv);
-
-/* process_tarball.c */
-int process_tarball(istream_t *input_file, sqfs_writer_t *sqfs);
-
-#endif /* TAR2SQFS_H */