aboutsummaryrefslogtreecommitdiff
path: root/bin/tar2sqfs/src/tar2sqfs.h
blob: d2049f2eeeca339095320a50f5b1edb4f4d286b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* 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 <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;
extern char **excludedirs;
extern size_t num_excludedirs;

void process_args(int argc, char **argv);

/* process_tarball.c */
int process_tarball(sqfs_dir_iterator_t *it, sqfs_writer_t *sqfs);

#endif /* TAR2SQFS_H */