diff options
-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> |