mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 08:26:21 +00:00
17 lines
194 B
C
17 lines
194 B
C
#include "log.h"
|
|
#include "windows.h"
|
|
#include "profanity.h"
|
|
|
|
int main(void)
|
|
{
|
|
log_init();
|
|
gui_init();
|
|
|
|
profanity_start();
|
|
|
|
gui_close();
|
|
log_close();
|
|
|
|
return 0;
|
|
}
|