#ifndef FRACTALS_H #define FRACTALS_H typedef struct { int x; int y; } point_t; typedef struct { double a; double b; } complex_t; typedef struct { enum { none, color, rings, binary } inside, outside; } fractal_fill_t; typedef enum { mandel, julia } set_t; #endif