diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2020-09-09 18:18:22 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2020-09-09 18:26:32 +0100 |
commit | c79b0357ea74debbf9680fa1afa930c0600ef3c2 (patch) | |
tree | b9683e706f13b1321afb66a20412c10faef155e5 | |
parent | 22ea2f04442442f9728825ad7888ca9c5250407e (diff) | |
download | pack-c79b0357ea74debbf9680fa1afa930c0600ef3c2.tar.gz pack-c79b0357ea74debbf9680fa1afa930c0600ef3c2.tar.xz pack-c79b0357ea74debbf9680fa1afa930c0600ef3c2.zip |
Add license headers
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | common.c | 4 | ||||
-rw-r--r-- | common.h | 4 | ||||
-rw-r--r-- | pack.h | 4 | ||||
-rw-r--r-- | trace.c | 4 | ||||
-rw-r--r-- | trace.h | 4 | ||||
-rw-r--r-- | unpack.c | 4 | ||||
-rw-r--r-- | unpack_test.c | 4 |
8 files changed, 30 insertions, 0 deletions
@@ -1 +1,3 @@ +# Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com> +# SPDX-License-Identifier: MIT unpack_test: unpack_test.o unpack.o common.o trace.o @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com> + * SPDX-License-Identifier: MIT + */ #include <stddef.h> #include "common.h" @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com> + * SPDX-License-Identifier: MIT + */ #ifndef PACK_INTERNAL_H #define PACK_INTERNAL_H @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com> + * SPDX-License-Identifier: MIT + */ #ifndef PACK_H #define PACK_H @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com> + * SPDX-License-Identifier: MIT + */ #include <stdarg.h> #include <stdio.h> @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com> + * SPDX-License-Identifier: MIT + */ #ifndef PACK_TRACE_H #define PACK_TRACE_H @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com> + * SPDX-License-Identifier: MIT + */ #include <ctype.h> #include <stdarg.h> #include <stdbool.h> diff --git a/unpack_test.c b/unpack_test.c index 8eee6b3..1dbc4ac 100644 --- a/unpack_test.c +++ b/unpack_test.c @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com> + * SPDX-License-Identifier: MIT + */ #include <stdio.h> #include <stdbool.h> |