Added don't care for \n

This commit is contained in:
id101010
2016-11-08 02:20:08 +01:00
parent 95c414369e
commit 32393cd77a
2 changed files with 3 additions and 0 deletions

BIN
bfckr Executable file

Binary file not shown.

View File

@@ -91,6 +91,9 @@ void bfuck_parser(char *input)
case ' ':
break;
case '\n':
break;
default:
printf("%c", *p);
die("Invalid operant!");