1d7 #ifndef PCX_H #define PCX_H typedef struct { unsigned char r, g, b; } RGB; typedef struct { char manufacturer; char version; char encoding; char bitsperpixel; short xmin, ymin; short xmax, ymax; short hres, vres; RGB palette[16]; char reserved; char planes; short bytesperline; short palettetype; char filler[58]; } PCXHDR; RGB *read_pcx(char *filename, int *width, int *height); #endif . 0