aboutsummaryrefslogtreecommitdiff
path: root/lib/util
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-07-30 06:53:25 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-07-30 06:53:25 +0200
commit7e00faaca0207eb6ee6cf109c09cc489d8fb7e3f (patch)
tree6cb236ccadeb001b70d64d6fd7f52dad3c0b3623 /lib/util
parent3811f48ced97ec0fe56b48f0d9d906a43037e2fd (diff)
Add propper copyright headers to all source files
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/util')
-rw-r--r--lib/util/canonicalize_name.c5
-rw-r--r--lib/util/crc32.c5
-rw-r--r--lib/util/dirstack.c5
-rw-r--r--lib/util/mkdir_p.c5
-rw-r--r--lib/util/padd_file.c5
-rw-r--r--lib/util/print_version.c5
-rw-r--r--lib/util/read_data.c5
-rw-r--r--lib/util/read_data_at.c5
-rw-r--r--lib/util/str_table.c5
-rw-r--r--lib/util/write_data.c5
10 files changed, 50 insertions, 0 deletions
diff --git a/lib/util/canonicalize_name.c b/lib/util/canonicalize_name.c
index f696432..f99bc2a 100644
--- a/lib/util/canonicalize_name.c
+++ b/lib/util/canonicalize_name.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * canonicalize_name.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/lib/util/crc32.c b/lib/util/crc32.c
index ffe0044..27c5b85 100644
--- a/lib/util/crc32.c
+++ b/lib/util/crc32.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * crc32.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/lib/util/dirstack.c b/lib/util/dirstack.c
index 6949749..84da3fb 100644
--- a/lib/util/dirstack.c
+++ b/lib/util/dirstack.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * dirstack.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include <sys/types.h>
diff --git a/lib/util/mkdir_p.c b/lib/util/mkdir_p.c
index 867933b..1040453 100644
--- a/lib/util/mkdir_p.c
+++ b/lib/util/mkdir_p.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * mkdir_p.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include <sys/types.h>
diff --git a/lib/util/padd_file.c b/lib/util/padd_file.c
index 0ac19a9..9a2428d 100644
--- a/lib/util/padd_file.c
+++ b/lib/util/padd_file.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * padd_file.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/lib/util/print_version.c b/lib/util/print_version.c
index 7b0965b..280c6d3 100644
--- a/lib/util/print_version.c
+++ b/lib/util/print_version.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * print_version.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "util.h"
diff --git a/lib/util/read_data.c b/lib/util/read_data.c
index 802baf4..47058d0 100644
--- a/lib/util/read_data.c
+++ b/lib/util/read_data.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * read_data.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include <unistd.h>
diff --git a/lib/util/read_data_at.c b/lib/util/read_data_at.c
index 98432d9..e055433 100644
--- a/lib/util/read_data_at.c
+++ b/lib/util/read_data_at.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * read_data_at.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include <unistd.h>
diff --git a/lib/util/str_table.c b/lib/util/str_table.c
index b6eb27c..ae3a4f2 100644
--- a/lib/util/str_table.c
+++ b/lib/util/str_table.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * str_table.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include <stdint.h>
diff --git a/lib/util/write_data.c b/lib/util/write_data.c
index 4396138..cc4947f 100644
--- a/lib/util/write_data.c
+++ b/lib/util/write_data.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * write_data.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include <unistd.h>