summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGentoo <installgentoo@endianness.com>2022-08-30 23:52:34 +1000
committerGentoo <installgentoo@endianness.com>2022-08-30 23:52:34 +1000
commit9fba2571ebd3f5f6dc203bb27079b7c2d9f6c8fb (patch)
tree7a8af483babb360f6d027f65316d073173e55592
parent41c4246b50f38d20a7dcd22531bd0a06cf339749 (diff)
downloadlatex-qa-processing-9fba2571ebd3f5f6dc203bb27079b7c2d9f6c8fb.tar.gz
latex-qa-processing-9fba2571ebd3f5f6dc203bb27079b7c2d9f6c8fb.tar.bz2
latex-qa-processing-9fba2571ebd3f5f6dc203bb27079b7c2d9f6c8fb.zip
added license headerHEADmaster
-rw-r--r--LICENSE (renamed from LICENCE)0
-rw-r--r--main.c13
2 files changed, 12 insertions, 1 deletions
diff --git a/LICENCE b/LICENSE
index f288702..f288702 100644
--- a/LICENCE
+++ b/LICENSE
diff --git a/main.c b/main.c
index 8749173..8082511 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,15 @@
-//This program splits up questions and answers in a latex file and saves each to separate files. Questions are prefixed by "\section*{". Answers are prefixed by "\subsection*{"
+/* Splits up questions and answers in a \LaTeX file and saves each to separate files. Questions are prefixed by "\section*{". Answers are prefixed by "\subsection*{"
+ 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>//basic I/O library
#include <stdlib.h>//library for malloc etc
#include <stdbool.h>//library for getting bools