aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2015-04-15 12:56:54 -0300
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2015-04-15 12:56:54 -0300
commit0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b (patch)
tree212c4d2ac7e269cc9f03f2240e36f865d4ce2493 /src/main.c
parenta8e0fedb3f12ed1ceda7879944606c8e1e7d4a08 (diff)
downloadblogc-0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b.tar.gz
blogc-0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b.tar.bz2
blogc-0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b.zip
initial structure
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..f989f62
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,21 @@
+/*
+ * 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif /* HAVE_CONFIG_H */
+
+#include <stdio.h>
+
+
+int
+main(int argc, char **argv)
+{
+ printf("Hello, World!\n");
+ return 0;
+}