From 3fec61c52b2636397012b82219e1ae5d19fc9fc0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 13 Apr 2023 13:08:21 +0200 Subject: Basically working many memory leaks, will fix kthxbye --- src/main.c | 50 ++++++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 24 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 454c9d9..5f82a3b 100644 --- a/src/main.c +++ b/src/main.c @@ -8,6 +8,7 @@ #include #include +#include #include #include #include @@ -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 */ -- cgit v1.2.3