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

20 lines
292 B
C

#include "log.h"
#include "windows.h"
#include "profanity.h"
int main(void)
{
int exit_status = LOGIN_FAIL;
log_init();
gui_init();
while (exit_status == LOGIN_FAIL) {
exit_status = profanity_start();
}
gui_close();
log_close();
return 0;
}