#ifndef INCLUDED_COLOR_H #define INCLUDED_COLOR_H #include typedef struct Color { double r, g, b; } Color; Color color_lerp(Color c1, Color c2, double t); void color_write(FILE *out, Color c); #endif /* INCLUDED_COLOR_H */