summaryrefslogtreecommitdiff
path: root/brainfuck.c
diff options
context:
space:
mode:
authorDaniel Jones <admin@danieljon.es>2020-11-19 23:54:59 +1030
committerDaniel Jones <admin@danieljon.es>2020-11-19 23:54:59 +1030
commit4707f3d0771740b8ff93ffdace9169e395009743 (patch)
tree97dc9bdd9d5d7bb1f54d4ab22be2a79989bfcba2 /brainfuck.c
parent8cabdb9b7bc682949bcad2e90055a485aafad7a3 (diff)
add license and headerHEADmaster
Diffstat (limited to 'brainfuck.c')
-rw-r--r--brainfuck.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/brainfuck.c b/brainfuck.c
index 3cddd02..9632c96 100644
--- a/brainfuck.c
+++ b/brainfuck.c
@@ -1,3 +1,18 @@
+/*
+ * 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 <unistd.h>