summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--LICENSE (renamed from LICENCE)0
-rw-r--r--decode.c11
-rw-r--r--encode.c11
-rw-r--r--main.c13
-rw-r--r--stdin.c11
5 files changed, 45 insertions, 1 deletions
diff --git a/LICENCE b/LICENSE
index f288702..f288702 100644
--- a/LICENCE
+++ b/LICENSE
diff --git a/decode.c b/decode.c
index 3368e3c..ee60985 100644
--- a/decode.c
+++ b/decode.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2021 Gentoo-libre Install
+
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
#include <stdio.h>
#include <stdlib.h>
#include <limits.h> //for CHAR_BIT
diff --git a/encode.c b/encode.c
index 2aba6cc..ee901bf 100644
--- a/encode.c
+++ b/encode.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2021 Gentoo-libre Install
+
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
#include <stdio.h>
#include <stdlib.h>
diff --git a/main.c b/main.c
index 5a51fbc..5baff9b 100644
--- a/main.c
+++ b/main.c
@@ -1,3 +1,15 @@
+/* Copyright (C) 2021 Gentoo-libre Install
+
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -49,7 +61,6 @@ if (argv[argvPos][1] == '-')
printf(" -d, --decode\t\tdecode data.\n");
printf(" -w, --wrap=COLS\twrap encoded lines after COLS character (default 76).\n");
printf("\t\t\t Use 0 to disable line wrapping\n\n");
- printf("This program is part of UNG.\n");
printf("Version: 0.1\n");
exit(0);
}
diff --git a/stdin.c b/stdin.c
index 3d2c54a..ab95204 100644
--- a/stdin.c
+++ b/stdin.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2021 Gentoo-libre Install
+
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>