aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2021-08-05 22:17:51 +0100
committerTomasz Kramkowski <tk@the-tk.com>2021-08-05 22:17:51 +0100
commita2180c1f4e6b4ff745b3dea1f4b8e98dfdb5eba4 (patch)
tree464e0b7bdc73208e6a757a6eb60857f5b64ae6c7
parentfa6ce07fbcf4fc784b25efb74f9e099104fea0d5 (diff)
downloadpack-a2180c1f4e6b4ff745b3dea1f4b8e98dfdb5eba4.tar.gz
pack-a2180c1f4e6b4ff745b3dea1f4b8e98dfdb5eba4.tar.xz
pack-a2180c1f4e6b4ff745b3dea1f4b8e98dfdb5eba4.zip
Fix license information content and format
-rw-r--r--.licignore1
-rw-r--r--common.c2
-rw-r--r--common.h2
-rw-r--r--ieee754b.c2
-rw-r--r--ieee754b.h2
-rw-r--r--pack.c2
-rw-r--r--pack.h2
-rw-r--r--test.c2
-rw-r--r--test_gen.c2
-rw-r--r--trace.c2
-rw-r--r--trace.h2
-rw-r--r--unpack.c2
12 files changed, 12 insertions, 11 deletions
diff --git a/.licignore b/.licignore
index c35173f..bd06040 100644
--- a/.licignore
+++ b/.licignore
@@ -1,4 +1,5 @@
*.do
+.builds/
.gitignore
.licignore
.parse-deps.sed
diff --git a/common.c b/common.c
index d48046c..0176d09 100644
--- a/common.c
+++ b/common.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com>
+ * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com>
* SPDX-License-Identifier: MIT
*/
#include <stddef.h>
diff --git a/common.h b/common.h
index a9386be..e4eebb0 100644
--- a/common.h
+++ b/common.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2020-2021 Tomasz Kramkowski <tk@the-tk.com>
+ * Copyright (C) 2020-2021 Tomasz Kramkowski <tk@the-tk.com>
* SPDX-License-Identifier: MIT
*/
#ifndef PACK_COMMON_H
diff --git a/ieee754b.c b/ieee754b.c
index bf418a8..865f79e 100644
--- a/ieee754b.c
+++ b/ieee754b.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2021 Tomasz Kramkowski <tk@the-tk.com>
+ * Copyright (C) 2021 Tomasz Kramkowski <tk@the-tk.com>
* SPDX-License-Identifier: MIT
*/
#include <math.h>
diff --git a/ieee754b.h b/ieee754b.h
index bb6266f..5c58975 100644
--- a/ieee754b.h
+++ b/ieee754b.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2021 Tomasz Kramkowski <tk@the-tk.com>
+ * Copyright (C) 2021 Tomasz Kramkowski <tk@the-tk.com>
* SPDX-License-Identifier: MIT
*/
#ifndef PACK_IEEE754B_H
diff --git a/pack.c b/pack.c
index a287448..3f25ab8 100644
--- a/pack.c
+++ b/pack.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com>
+ * Copyright (C) 2020-2021 Tomasz Kramkowski <tk@the-tk.com>
* SPDX-License-Identifier: MIT
*/
#include <ctype.h>
diff --git a/pack.h b/pack.h
index b8139d5..1cc0851 100644
--- a/pack.h
+++ b/pack.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com>
+ * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com>
* SPDX-License-Identifier: MIT
*/
#ifndef PACK_H
diff --git a/test.c b/test.c
index b2cff61..138284a 100644
--- a/test.c
+++ b/test.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com>
+ * Copyright (C) 2020-2021 Tomasz Kramkowski <tk@the-tk.com>
* SPDX-License-Identifier: MIT
*/
#include <assert.h>
diff --git a/test_gen.c b/test_gen.c
index 549d925..27643af 100644
--- a/test_gen.c
+++ b/test_gen.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2020-2021 Tomasz Kramkowski <tk@the-tk.com>
+ * Copyright (C) 2020-2021 Tomasz Kramkowski <tk@the-tk.com>
* SPDX-License-Identifier: MIT
*/
// @BUILD_CC host
diff --git a/trace.c b/trace.c
index 05556bc..d8e6ef2 100644
--- a/trace.c
+++ b/trace.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com>
+ * Copyright (C) 2020 Tomasz Kramkowski <tk@the-tk.com>
* SPDX-License-Identifier: MIT
*/
#include <stdarg.h>
diff --git a/trace.h b/trace.h
index 3b3cfa1..57393d9 100644
--- a/trace.h
+++ b/trace.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2020-2021 Tomasz Kramkowski <tk@the-tk.com>
+ * Copyright (C) 2020-2021 Tomasz Kramkowski <tk@the-tk.com>
* SPDX-License-Identifier: MIT
*/
#ifndef PACK_TRACE_H
diff --git a/unpack.c b/unpack.c
index 6c0d97d..7d2b08a 100644
--- a/unpack.c
+++ b/unpack.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2020-2021 Tomasz Kramkowski <tk@the-tk.com>
+ * Copyright (C) 2020-2021 Tomasz Kramkowski <tk@the-tk.com>
* SPDX-License-Identifier: MIT
*/
#include <ctype.h>