aboutsummaryrefslogtreecommitdiffstats
path: root/src/renderer.h
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2015-04-19 00:06:56 -0300
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2015-04-19 00:06:56 -0300
commit30e5e6890682d4759e6dcdfc833a666e0ab3f7a2 (patch)
treed225bd39fcf99b14bc5f9ad8c1bfeedb2d5ab04d /src/renderer.h
parentde39a41da62c4b3820b4805ddb7c4970c36bc257 (diff)
downloadblogc-30e5e6890682d4759e6dcdfc833a666e0ab3f7a2.tar.gz
blogc-30e5e6890682d4759e6dcdfc833a666e0ab3f7a2.tar.bz2
blogc-30e5e6890682d4759e6dcdfc833a666e0ab3f7a2.zip
added renderer, without tests
Diffstat (limited to 'src/renderer.h')
-rw-r--r--src/renderer.h17
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 */