diff options
Diffstat (limited to 'src/renderer.h')
-rw-r--r-- | src/renderer.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/renderer.h b/src/renderer.h new file mode 100644 index 0000000..473fe0e --- /dev/null +++ b/src/renderer.h @@ -0,0 +1,17 @@ +/* + * blogc: A blog compiler. + * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> + * + * This program can be distributed under the terms of the BSD License. + * See the file COPYING. + */ + +#ifndef _RENDERER_H +#define _RENDERER_H + +#include "utils/utils.h" + +char* +blogc_render(b_slist_t *tmpl, b_slist_t *sources); + +#endif /* _RENDERER_H */ |