From 8499010b91a2c7496d6af74cce35a6b4e0378633 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 20 May 2023 14:13:45 +0200 Subject: Added testing flag still not able to find the 8cc bug but idc because I tested it with many programs and it probably won't be an issue for now --- inc/build.h | 6 ++++-- inc/parse.h | 1 - inc/term.h | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) (limited to 'inc') diff --git a/inc/build.h b/inc/build.h index 2d99f9d..0b76768 100644 --- a/inc/build.h +++ b/inc/build.h @@ -4,11 +4,13 @@ #ifndef BLOC_BUILD_H #define BLOC_BUILD_H +#include + #include #include #include -void write_bloc(struct list *table, const char *path); -void write_blc(struct bloc_parsed *bloc, const char *path); +void write_bloc(struct list *table, FILE *file); +void write_blc(struct bloc_parsed *bloc, FILE *file); #endif diff --git a/inc/parse.h b/inc/parse.h index 205f204..8eba970 100644 --- a/inc/parse.h +++ b/inc/parse.h @@ -17,6 +17,5 @@ struct bloc_parsed { struct term *parse_blc(const char *term); struct bloc_parsed *parse_bloc(const void *bloc); void free_bloc(struct bloc_parsed *bloc); -struct term *from_bloc(struct bloc_parsed *bloc); #endif diff --git a/inc/term.h b/inc/term.h index 1fe5a91..d368f0e 100644 --- a/inc/term.h +++ b/inc/term.h @@ -29,5 +29,6 @@ struct term { struct term *new_term(term_type type); void free_term(struct term *term); +void diff_term(struct term *a, struct term *b); #endif -- cgit v1.2.3