jack-compiler/main.c

29 lines
489 B
C
Raw Normal View History

2020-11-30 16:44:22 -05:00
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include "tokenizer.h"
2020-12-14 14:12:20 -05:00
#include "printer.h"
#include "parser.h"
2020-11-30 16:44:22 -05:00
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;
}
2020-12-14 14:12:20 -05:00
PARSER* p = mkparser(tokenize(input), argv[1]);
parse(p);
printparser(stdout, p);
2020-11-30 16:44:22 -05:00
return 0;
}