about summary refs log tree commit diff stats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/main.c b/main.c
new file mode 100644
index 00000000..8cac8539
--- /dev/null
+++ b/main.c
@@ -0,0 +1,16 @@
+#include "log.h"
+#include "windows.h"
+#include "profanity.h"
+
+int main(void)
+{   
+    log_init();
+    gui_init();
+
+    profanity_start();
+    
+    gui_close();
+    log_close();
+
+    return 0;
+}