diff options
Diffstat (limited to 'include/template.h')
-rw-r--r-- | include/template.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/template.h b/include/template.h index de36293..82ae180 100644 --- a/include/template.h +++ b/include/template.h @@ -1,9 +1,10 @@ #ifndef __TEMPLATE_H #define __TEMPLATE_H +#include <list.h> + typedef struct { - char *pre; - char *post; + list_t *components; } template_t; template_t *template_create(void); |