From c79b0357ea74debbf9680fa1afa930c0600ef3c2 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Wed, 9 Sep 2020 18:18:22 +0100 Subject: Add license headers --- Makefile | 2 ++ common.c | 4 ++++ common.h | 4 ++++ pack.h | 4 ++++ trace.c | 4 ++++ trace.h | 4 ++++ unpack.c | 4 ++++ unpack_test.c | 4 ++++ 8 files changed, 30 insertions(+) diff --git a/Makefile b/Makefile index 1d88ef2..40e1cff 100644 --- a/Makefile +++ b/Makefile @@ -1 +1,3 @@ +# Copyright (C) 2020 Tomasz Kramkowski +# SPDX-License-Identifier: MIT unpack_test: unpack_test.o unpack.o common.o trace.o diff --git a/common.c b/common.c index 106fc7a..d48046c 100644 --- a/common.c +++ b/common.c @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski + * SPDX-License-Identifier: MIT + */ #include #include "common.h" diff --git a/common.h b/common.h index f5a39c9..821b1cb 100644 --- a/common.h +++ b/common.h @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski + * SPDX-License-Identifier: MIT + */ #ifndef PACK_INTERNAL_H #define PACK_INTERNAL_H diff --git a/pack.h b/pack.h index ec8cf63..a9b0ba4 100644 --- a/pack.h +++ b/pack.h @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski + * SPDX-License-Identifier: MIT + */ #ifndef PACK_H #define PACK_H diff --git a/trace.c b/trace.c index 456d277..b814d01 100644 --- a/trace.c +++ b/trace.c @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski + * SPDX-License-Identifier: MIT + */ #include #include diff --git a/trace.h b/trace.h index cf631cc..cef9927 100644 --- a/trace.h +++ b/trace.h @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski + * SPDX-License-Identifier: MIT + */ #ifndef PACK_TRACE_H #define PACK_TRACE_H diff --git a/unpack.c b/unpack.c index 2617e9a..62c5805 100644 --- a/unpack.c +++ b/unpack.c @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2020 Tomasz Kramkowski + * SPDX-License-Identifier: MIT + */ #include #include #include 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 + * SPDX-License-Identifier: MIT + */ #include #include -- cgit v1.2.3-54-g00ecf