summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2019-01-20 11:03:40 +0100
committerpgen <p.gen.progs@gmail.com>2019-01-20 11:03:40 +0100
commit433eb2eb1a660df5fbc32886e63838154b47c14d (patch)
tree7ffde7d05897773146a87aefbb6b2d4eec1d0bbf
parent9df4a51a034b7ffa01f0a5dc0b859ed886cd6d54 (diff)
Add GPL2 license reminder where appropriate
-rw-r--r--fgetc.c5
-rw-r--r--fgetc.h5
-rw-r--r--index.c6
-rw-r--r--index.h5
-rw-r--r--list.c5
-rw-r--r--list.h5
-rw-r--r--smenu.h5
-rw-r--r--utf8.c5
-rw-r--r--utf8.h5
-rw-r--r--utils.c5
-rw-r--r--utils.h5
11 files changed, 55 insertions, 1 deletions
diff --git a/fgetc.c b/fgetc.c
index 98c7f6a..aa33a1f 100644
--- a/fgetc.c
+++ b/fgetc.c
@@ -1,3 +1,8 @@
+/* ########################################################### */
+/* This Software is licensed under the GPL licensed Version 2, */
+/* please read http://www.gnu.org/copyleft/gpl.html */
+/* ########################################################### */
+
/* ************************************************************************ */
/* Custom fgetc/ungetc implementation able to unget more than one character */
/* ************************************************************************ */
diff --git a/fgetc.h b/fgetc.h
index 72e9cfa..f458928 100644
--- a/fgetc.h
+++ b/fgetc.h
@@ -1,3 +1,8 @@
+/* ########################################################### */
+/* This Software is licensed under the GPL licensed Version 2, */
+/* please read http://www.gnu.org/copyleft/gpl.html */
+/* ########################################################### */
+
#ifndef FGETC_H
#define FGETC_H
diff --git a/index.c b/index.c
index c9be11b..b92828e 100644
--- a/index.c
+++ b/index.c
@@ -1,4 +1,8 @@
-/* *************************************************************** */
+/* ########################################################### */
+/* This Software is licensed under the GPL licensed Version 2, */
+/* please read http://www.gnu.org/copyleft/gpl.html */
+/* ########################################################### */
+
/* Ternary Search Tree and sorted array creation functions */
/* Inspired by: https://www.cs.princeton.edu/~rs/strings/tstdemo.c */
/* *************************************************************** */
diff --git a/index.h b/index.h
index 02c4679..f397576 100644
--- a/index.h
+++ b/index.h
@@ -1,3 +1,8 @@
+/* ########################################################### */
+/* This Software is licensed under the GPL licensed Version 2, */
+/* please read http://www.gnu.org/copyleft/gpl.html */
+/* ########################################################### */
+
#ifndef INDEX_H
#define INDEX_H
diff --git a/list.c b/list.c
index 1daefc0..6c59006 100644
--- a/list.c
+++ b/list.c
@@ -1,3 +1,8 @@
+/* ########################################################### */
+/* This Software is licensed under the GPL licensed Version 2, */
+/* please read http://www.gnu.org/copyleft/gpl.html */
+/* ########################################################### */
+
/* ********************************************************************* */
/* Tiny list immplementation. */
/* */
diff --git a/list.h b/list.h
index 90bca3f..bbb506c 100644
--- a/list.h
+++ b/list.h
@@ -1,3 +1,8 @@
+/* ########################################################### */
+/* This Software is licensed under the GPL licensed Version 2, */
+/* please read http://www.gnu.org/copyleft/gpl.html */
+/* ########################################################### */
+
#ifndef LIST_H
#define LIST_H
diff --git a/smenu.h b/smenu.h
index 9452cd7..b2a1500 100644
--- a/smenu.h
+++ b/smenu.h
@@ -1,3 +1,8 @@
+/* ########################################################### */
+/* This Software is licensed under the GPL licensed Version 2, */
+/* please read http://www.gnu.org/copyleft/gpl.html */
+/* ########################################################### */
+
#ifndef SMENU_H
#define SMENU_H
diff --git a/utf8.c b/utf8.c
index dfaba2c..c43c563 100644
--- a/utf8.c
+++ b/utf8.c
@@ -1,3 +1,8 @@
+/* ########################################################### */
+/* This Software is licensed under the GPL licensed Version 2, */
+/* please read http://www.gnu.org/copyleft/gpl.html */
+/* ########################################################### */
+
/* ************************************ */
/* Various UTF-8 manipulation functions */
/* ************************************ */
diff --git a/utf8.h b/utf8.h
index 4234b76..3bde4f0 100644
--- a/utf8.h
+++ b/utf8.h
@@ -1,3 +1,8 @@
+/* ########################################################### */
+/* This Software is licensed under the GPL licensed Version 2, */
+/* please read http://www.gnu.org/copyleft/gpl.html */
+/* ########################################################### */
+
#ifndef UTF8_H
#define UTF8_H
diff --git a/utils.c b/utils.c
index 1e8ee2a..1b2fb04 100644
--- a/utils.c
+++ b/utils.c
@@ -1,3 +1,8 @@
+/* ########################################################### */
+/* This Software is licensed under the GPL licensed Version 2, */
+/* please read http://www.gnu.org/copyleft/gpl.html */
+/* ########################################################### */
+
/* ******************************* */
/* Various small utility functions */
/* ******************************* */
diff --git a/utils.h b/utils.h
index 93970d7..227de8f 100644
--- a/utils.h
+++ b/utils.h
@@ -1,3 +1,8 @@
+/* ########################################################### */
+/* This Software is licensed under the GPL licensed Version 2, */
+/* please read http://www.gnu.org/copyleft/gpl.html */
+/* ########################################################### */
+
#ifndef UTILS_H
#define UTILS_H