Renamed some source files

This commit is contained in:
James Booth
2012-02-09 22:24:03 +00:00
parent e989198923
commit 5d9c7ffd9c
6 changed files with 187 additions and 186 deletions

16
main.c Normal file
View File

@@ -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;
}