diff options
author | Marvin Borner | 2023-05-20 14:13:45 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-20 14:13:45 +0200 |
commit | 8499010b91a2c7496d6af74cce35a6b4e0378633 (patch) | |
tree | c57a6a6fb12f4653928662e93d4470453068e361 /inc | |
parent | f640ceee89836b56ac95c4eb1b0a43d1171c3354 (diff) |
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
Diffstat (limited to 'inc')
-rw-r--r-- | inc/build.h | 6 | ||||
-rw-r--r-- | inc/parse.h | 1 | ||||
-rw-r--r-- | inc/term.h | 1 |
3 files changed, 5 insertions, 3 deletions
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 <stdio.h> + #include <spec.h> #include <tree.h> #include <parse.h> -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 @@ -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 |