Added wtfpl logo

This commit is contained in:
id101010
2016-11-08 02:10:49 +01:00
parent 38b6dd16d6
commit 95c414369e
2 changed files with 6 additions and 4 deletions

View File

@@ -8,6 +8,9 @@ A little brainfuck interpreter written in C.
* ./bfckr "$yourstuff" * ./bfckr "$yourstuff"
# Licence # Licence
![WTFPL](http://www.wtfpl.net/wp-content/uploads/2012/12/logo-220x1601.png)
Copyright © 2016 Aaron aaron@duckpond.ch Copyright © 2016 Aaron aaron@duckpond.ch
This work is free. You can redistribute it and/or modify it under the 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, terms of the Do What The Fuck You Want To Public License, Version 2,

View File

@@ -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 * 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 * 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 * 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<stdio.h> #include<stdio.h>
@@ -37,8 +38,6 @@ void die(const char *message)
// Parses and executes a brainfuck expression // Parses and executes a brainfuck expression
void bfuck_parser(char *input) void bfuck_parser(char *input)
{ {
//printf("%s\n", input);
char curr; char curr;
uint16_t loop; uint16_t loop;