diff options
Diffstat (limited to 'include/template.h')
-rw-r--r-- | include/template.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/template.h b/include/template.h index c898487..dbeb897 100644 --- a/include/template.h +++ b/include/template.h @@ -2,6 +2,7 @@ #define __TEMPLATE_H #include <list.h> +#include <stdbool.h> #include <stdio.h> typedef struct { @@ -10,6 +11,10 @@ typedef struct { template_t *template_create(void); void template_delete(template_t *template); -void template_write(template_t *template, list_t *content_headers, FILE *f); +void template_write(template_t *template, + list_t *content_headers, + FILE *f, + void *doc, + bool is_markdown); #endif |