changeset 77 | 49e0babccb23 |
parent 48 | b94d657a9acb |
child 131 | b5ad49852adc |
76:c46968bddef5 | 77:49e0babccb23 |
---|---|
1 /** |
1 /** |
2 * recursive_compiler.c |
|
3 * Adapted from: http://de.wikipedia.org/wiki/Compiler |
|
4 * |
|
2 * Ein-Pass-Compiler |
5 * Ein-Pass-Compiler |
3 * Adapted from: http://de.wikipedia.org/wiki/Compiler |
|
4 */ |
6 */ |
5 |
7 |
6 #include <stdio.h> |
8 #include <stdio.h> |
7 #include <stdlib.h> |
9 #include <stdlib.h> |
8 #include <string.h> |
10 #include <string.h> |