48 lines
862 B
C
48 lines
862 B
C
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include "tokenizer.h"
|
|
#include "printer.h"
|
|
#include "parser.h"
|
|
#include "compiler.h"
|
|
|
|
void println(LINE* ln) {
|
|
for(int i = 0; i < ln->tokenscount; i++) {
|
|
printf("%s", ln->tokens[i]);
|
|
if(i != ln->tokenscount-1)
|
|
printf(" ");
|
|
}
|
|
printf("\n");
|
|
}
|
|
|
|
void printcompiler(COMPILER* c) {
|
|
LINE* current = c->output;
|
|
while(current != NULL) {
|
|
println(current);
|
|
current = current->next;
|
|
}
|
|
}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
if(argc < 2) {
|
|
fprintf(stderr, "Usage: %s {input file}\n", argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
FILE* input = fopen(argv[1], "r");
|
|
|
|
if(input == NULL) {
|
|
fprintf(stderr, "%s\n", strerror(errno));
|
|
return errno;
|
|
}
|
|
|
|
PARSER* p = mkparser(tokenize(input), argv[1]);
|
|
parse(p);
|
|
COMPILER* c = mkcompiler(p->output);
|
|
compile(c);
|
|
printcompiler(c);
|
|
|
|
return 0;
|
|
}
|