aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2020-09-09 18:18:22 +0100
committerTomasz Kramkowski <tk@the-tk.com>2020-09-09 18:26:32 +0100
commitc79b0357ea74debbf9680fa1afa930c0600ef3c2 (patch)
treeb9683e706f13b1321afb66a20412c10faef155e5
parent22ea2f04442442f9728825ad7888ca9c5250407e (diff)
downloadpack-c79b0357ea74debbf9680fa1afa930c0600ef3c2.tar.gz
pack-c79b0357ea74debbf9680fa1afa930c0600ef3c2.tar.xz
pack-c79b0357ea74debbf9680fa1afa930c0600ef3c2.zip
Add license headers
-rw-r--r--Makefile2
-rw-r--r--common.c4
-rw-r--r--common.h4
-rw-r--r--pack.h4
-rw-r--r--trace.c4
-rw-r--r--trace.h4
-rw-r--r--unpack.c4
-rw-r--r--unpack_test.c4
8 files changed, 30 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1d88ef2..40e1cff 100644
--- a/Makefile
+++ b/Makefile
@@ -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
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 <tk@the-tk.com>
+ * SPDX-License-Identifier: MIT
+ */
#include <stddef.h>
#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 <tk@the-tk.com>
+ * 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 <tk@the-tk.com>
+ * 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 <tk@the-tk.com>
+ * SPDX-License-Identifier: MIT
+ */
#include <stdarg.h>
#include <stdio.h>
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 <tk@the-tk.com>
+ * 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 <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>