diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/template.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/template.h b/include/template.h new file mode 100644 index 0000000..36d3c2a --- /dev/null +++ b/include/template.h @@ -0,0 +1,16 @@ +// +// Created by jhunk on 12/17/23. +// + +#ifndef OMC_TEMPLATE_H +#define OMC_TEMPLATE_H + +#include "omc.h" + +void tpl_register(char *key, char *ptr); +void tpl_free(); +char *tpl_getval(char *key); +char *tpl_render(char *str); + + +#endif //OMC_TEMPLATE_H |