summaryrefslogtreecommitdiff
path: root/static-analysis/main.c
blob: 8d3f90e146165828ff4d815c3cce8ce4f37d1d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
////// NOTE: you don't need to modify this file //////
#include <string.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include "compiler.h"

int main(int argc, char **argv) {
    PATH = argv[1];

    // Read the entire file
    struct stat statbuf;
    stat(PATH, &statbuf);

    FILE *fd = fopen(PATH, "r");
    char *data = calloc(statbuf.st_size + 1, sizeof(char));
    fread(data, sizeof(char), statbuf.st_size, fd);

    // Do the lexing
    lex(data);

    // Then process the lexed program
    process_program();
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback