aboutsummaryrefslogtreecommitdiff
path: root/include/template.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/template.h')
-rw-r--r--include/template.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/template.h b/include/template.h
index e29e6b5..de36293 100644
--- a/include/template.h
+++ b/include/template.h
@@ -1,6 +1,11 @@
#ifndef __TEMPLATE_H
#define __TEMPLATE_H
-void template_initialize(char **base_pre, char **base_post);
+typedef struct {
+ char *pre;
+ char *post;
+} template_t;
+
+template_t *template_create(void);
#endif