// MIT License, Copyright (c) 2020 Marvin Borner #include #include #include int main(int argc, char **argv) { (void)argc; /* printf("ARGC: %d\n", argc); */ /* printf("[%s loaded]\n", argv[0]); */ int wm = exec("/wm", "wm", argv[1], NULL); int test = exec("/window", "test", NULL); int mandelbrot = exec("/mandelbrot", "mandelbrot", NULL); return wm + mandelbrot + test; }