diff options
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 |