Created
April 24, 2011 16:47
-
-
Save Ricket/939687 to your computer and use it in GitHub Desktop.
Brainfuck to C translator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* A simple, non-optimizing brainfuck to C translator. | |
* 2010-08-31 - Version 1.0 (Cory Burgett) | |
* | |
* This code is hereby placed into the public domain. | |
* | |
* Originally located at: http://www4.ncsu.edu/~cmburget/brainfucc.c | |
*/ | |
#include <stdio.h> | |
int main(int argc, char **argv) | |
{ | |
FILE *in = stdin, *out = stdout; | |
int c; | |
int cellsize = 30000; | |
fprintf(out, | |
"#include <stdio.h>\n" | |
"#include <stdlib.h>\n\n" | |
"int main(int argc, char **argv)\n{\n" | |
"\tunsigned char *cell = calloc(%d, 1);\n" | |
"\tunsigned char *cells = cell;\n" | |
"\tif (!cell) {\n" | |
"\t\tfprintf(stderr, \"Error allocating memory.\\n\");\n" | |
"\t\treturn 1;\n" | |
"\t}\n\n", cellsize | |
); | |
while ((c = getc(in)) != EOF) { | |
switch (c) { | |
case '>': fprintf(out, "\t\t++cell;\n"); break; | |
case '<': fprintf(out, "\t\t--cell;\n"); break; | |
case '+': fprintf(out, "\t\t++*cell;\n"); break; | |
case '-': fprintf(out, "\t\t--*cell;\n"); break; | |
case '.': fprintf(out, "\t\tputchar(*cell);\n"); break; | |
case ',': fprintf(out, "\t\t*cell = getchar();\n"); break; | |
case '[': fprintf(out, "\twhile (*cell) {\n"); break; | |
case ']': fprintf(out, "\t}\n"); break; | |
default: break; | |
} | |
} | |
fprintf(out, "\n\tfree(cells);\n\treturn 0;\n}\n\n"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment