1 #ifndef PS_COLOR_H
2 #define PS_COLOR_H
3 
4 typedef struct
5 {
6     int none;			/* 1: no color */
7     int r, g, b;
8     double fr, fg, fb;
9 } PSCOLOR;
10 
11 #endif
12