/* hsv2rgb.h * Convert Hue Saturation Value to Red Green Blue * * Programme de convertion d'une information HSV en RGB */#ifndef HSV2RGB_H#define HSV2RGB_Htypedefstruct{unsignedcharh;unsignedchars;unsignedcharv;}hsv_color;typedefstruct{unsignedcharr;unsignedcharg;unsignedcharb;}rgb_color;rgb_colorhsv2rgb(hsv_colorhsv);#endif