1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00
profanity/profanity.c

17 lines
188 B
C
Raw Normal View History

2012-02-05 10:10:10 -05:00
#include "log.h"
2012-02-05 18:08:15 -05:00
#include "windows.h"
2012-02-06 19:08:59 -05:00
#include "app.h"
2012-02-05 16:11:43 -05:00
int main(void)
{
2012-02-06 19:08:59 -05:00
log_init();
gui_init();
2012-02-05 18:29:09 -05:00
2012-02-06 19:08:59 -05:00
start_profanity();
2012-02-06 19:08:59 -05:00
gui_close();
log_close();
return 0;
}