#ifndef _COLOR_MATH_H #define _COLOR_MATH_H #include "math.h" struct rgb { double r, g, b; }; struct xyz { double x, y, z; }; struct rgb calc_whitepoint(int temp); #endif