diff options
author | Marvin Borner | 2023-04-13 13:08:21 +0200 |
---|---|---|
committer | Marvin Borner | 2023-04-13 13:08:21 +0200 |
commit | 3fec61c52b2636397012b82219e1ae5d19fc9fc0 (patch) | |
tree | 5789dbd0d8058fe885a797ea59c5209e91ea7597 /src/main.c | |
parent | 2ca9fd69c9b60c54316dfb25ba45e64fee0de968 (diff) |
Basically working
many memory leaks, will fix kthxbye
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 50 |
1 files changed, 26 insertions, 24 deletions
@@ -8,6 +8,7 @@ #include <term.h> #include <print.h> +#include <tree.h> #include <parse.h> #include <build.h> #include <free.h> @@ -69,30 +70,31 @@ static char *read_file(const char *path) int main(int argc, char **argv) { - /* if (argc < 2) { */ - /* fprintf(stderr, "Invalid arguments\n"); */ - /* return 1; */ - /* } */ - - /* char *input; */ - /* if (argv[1][0] == '-') { */ - /* input = read_stdin(); */ - /* } else { */ - /* input = read_file(argv[1]); */ - /* } */ - - /* if (!input) */ - /* return 1; */ - - /* struct term *parsed = parse_blc(input); */ - /* print_bruijn(parsed); */ - - write_bloc(0, "test.bloc"); - - const char *input = read_file("test.bloc"); - struct bloc_parsed *bloc = parse_bloc(input); - struct term *term = from_bloc(bloc); - print_blc(term); + if (argc < 2) { + fprintf(stderr, "Invalid arguments\n"); + return 1; + } + + char *input; + if (argv[1][0] == '-') { + input = read_stdin(); + } else { + input = read_file(argv[1]); + } + + if (!input) + return 1; + + struct term *parsed = parse_blc(input); + print_bruijn(parsed); + + tree_merge_duplicates(parsed); + + /* write_bloc(0, "test.bloc"); */ + /* const char *input = read_file("test.bloc"); */ + /* struct bloc_parsed *bloc = parse_bloc(input); */ + /* struct term *term = from_bloc(bloc); */ + /* print_blc(term); */ /* free_term(term); // TODO: Fix sharing user-after-free */ |