diff options
Diffstat (limited to 'lib/comp')
-rw-r--r-- | lib/comp/compressor.c | 5 | ||||
-rw-r--r-- | lib/comp/gzip.c | 5 | ||||
-rw-r--r-- | lib/comp/internal.h | 5 | ||||
-rw-r--r-- | lib/comp/lz4.c | 5 | ||||
-rw-r--r-- | lib/comp/lzo.c | 5 | ||||
-rw-r--r-- | lib/comp/xz.c | 5 | ||||
-rw-r--r-- | lib/comp/zstd.c | 5 |
7 files changed, 35 insertions, 0 deletions
diff --git a/lib/comp/compressor.c b/lib/comp/compressor.c index fd67257..e59d948 100644 --- a/lib/comp/compressor.c +++ b/lib/comp/compressor.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * compressor.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "config.h" #include <string.h> diff --git a/lib/comp/gzip.c b/lib/comp/gzip.c index f974341..1068520 100644 --- a/lib/comp/gzip.c +++ b/lib/comp/gzip.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * gzip.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "config.h" #include <stdbool.h> diff --git a/lib/comp/internal.h b/lib/comp/internal.h index f5bf956..6bcd8fc 100644 --- a/lib/comp/internal.h +++ b/lib/comp/internal.h @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * internal.h + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #ifndef INTERNAL_H #define INTERNAL_H diff --git a/lib/comp/lz4.c b/lib/comp/lz4.c index 2dafea3..ffa84dc 100644 --- a/lib/comp/lz4.c +++ b/lib/comp/lz4.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * lz4.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "config.h" #include <stdbool.h> diff --git a/lib/comp/lzo.c b/lib/comp/lzo.c index 5443d7d..98cc200 100644 --- a/lib/comp/lzo.c +++ b/lib/comp/lzo.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * lzo.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "config.h" #include <stdbool.h> diff --git a/lib/comp/xz.c b/lib/comp/xz.c index 330441c..3e63050 100644 --- a/lib/comp/xz.c +++ b/lib/comp/xz.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * xz.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "config.h" #include <stdbool.h> diff --git a/lib/comp/zstd.c b/lib/comp/zstd.c index 8fa931b..252e1bf 100644 --- a/lib/comp/zstd.c +++ b/lib/comp/zstd.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * zstd.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "config.h" #include <stdbool.h> |