1 2 3 4 5 6 7 8 9 10 11 12
#include "mandel.h" int main(void) { State state; if (!state_init(&state)) return (1); state_run(&state); state_quit(&state); return EXIT_SUCCESS; }