blob: 5884a648223895b2a50cdeb14ff2a17fda354420 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "mandel.h"
int main(void)
{
State state;
if (!state_init(&state))
return (1);
state_run(&state);
/* printf("yo\n"); */
state_quit(&state);
return EXIT_SUCCESS;
}
|