diff --git a/README.md b/README.md index 0e975e5..33c9de0 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,9 @@ A little brainfuck interpreter written in C. * ./bfckr "$yourstuff" # Licence + +![WTFPL](http://www.wtfpl.net/wp-content/uploads/2012/12/logo-220x1601.png) + Copyright © 2016 Aaron aaron@duckpond.ch This work is free. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, diff --git a/bfckr.c b/bfckr.c index 161e244..c807499 100644 --- a/bfckr.c +++ b/bfckr.c @@ -1,8 +1,9 @@ -/* This program is free software. It comes without any warranty, to +/* + * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See - * http://www.wtfpl.net/ for more details. + * http://www.wtfpl.net/ for more details. */ #include @@ -37,8 +38,6 @@ void die(const char *message) // Parses and executes a brainfuck expression void bfuck_parser(char *input) { - //printf("%s\n", input); - char curr; uint16_t loop;