| 183 | PlotColor plot_color_hex (unsigned int rgb_or_rgba); |
| 184 | |
| 185 | static inline PlotColor plot_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) { |
| 186 | PlotColor c = { r, g, b, a }; |
| 187 | return c; |
| 188 | } |
| 189 | |
| 190 | |
| 191 | /* ------------------------------------------------------------------ */ |
no outgoing calls
no test coverage detected