1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-29 19:56:07 -04:00
profanity/main.c

17 lines
194 B
C
Raw Normal View History

2012-02-09 17:24:03 -05:00
#include "log.h"
#include "windows.h"
#include "profanity.h"
int main(void)
{
log_init();
gui_init();
profanity_start();
gui_close();
log_close();
return 0;
}