diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-07-30 06:53:25 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-07-30 06:53:25 +0200 |
commit | 7e00faaca0207eb6ee6cf109c09cc489d8fb7e3f (patch) | |
tree | 6cb236ccadeb001b70d64d6fd7f52dad3c0b3623 /unpack | |
parent | 3811f48ced97ec0fe56b48f0d9d906a43037e2fd (diff) |
Add propper copyright headers to all source files
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'unpack')
-rw-r--r-- | unpack/describe.c | 5 | ||||
-rw-r--r-- | unpack/fill_files.c | 5 | ||||
-rw-r--r-- | unpack/list_files.c | 5 | ||||
-rw-r--r-- | unpack/options.c | 5 | ||||
-rw-r--r-- | unpack/rdsquashfs.c | 5 | ||||
-rw-r--r-- | unpack/rdsquashfs.h | 5 | ||||
-rw-r--r-- | unpack/restore_fstree.c | 5 |
7 files changed, 35 insertions, 0 deletions
diff --git a/unpack/describe.c b/unpack/describe.c index be27857..627bc2b 100644 --- a/unpack/describe.c +++ b/unpack/describe.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * describe.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "rdsquashfs.h" static void print_name(tree_node_t *n) diff --git a/unpack/fill_files.c b/unpack/fill_files.c index 88efd01..e104ae7 100644 --- a/unpack/fill_files.c +++ b/unpack/fill_files.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * fill_files.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "config.h" #include "rdsquashfs.h" diff --git a/unpack/list_files.c b/unpack/list_files.c index 9c48d46..857657b 100644 --- a/unpack/list_files.c +++ b/unpack/list_files.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * list_files.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "rdsquashfs.h" static void mode_to_str(uint16_t mode, char *p) diff --git a/unpack/options.c b/unpack/options.c index e7911e5..c281415 100644 --- a/unpack/options.c +++ b/unpack/options.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * options.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "rdsquashfs.h" static struct option long_opts[] = { diff --git a/unpack/rdsquashfs.c b/unpack/rdsquashfs.c index f165b90..4b2dc6c 100644 --- a/unpack/rdsquashfs.c +++ b/unpack/rdsquashfs.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * rdsquashfs.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "rdsquashfs.h" int main(int argc, char **argv) diff --git a/unpack/rdsquashfs.h b/unpack/rdsquashfs.h index 56250fd..b7c2fdf 100644 --- a/unpack/rdsquashfs.h +++ b/unpack/rdsquashfs.h @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * rdsquashfs.h + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #ifndef RDSQUASHFS_H #define RDSQUASHFS_H diff --git a/unpack/restore_fstree.c b/unpack/restore_fstree.c index a868062..c25763c 100644 --- a/unpack/restore_fstree.c +++ b/unpack/restore_fstree.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * restore_fstree.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "rdsquashfs.h" static int create_node(tree_node_t *n, int flags) |