RosettaCodeData/Task/Grayscale-image/C/grayscale-image-1.c
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

12 lines
302 B
C

typedef unsigned char luminance;
typedef luminance pixel1[1];
typedef struct {
unsigned int width;
unsigned int height;
luminance *buf;
} grayimage_t;
typedef grayimage_t *grayimage;
grayimage alloc_grayimg(unsigned int, unsigned int);
grayimage tograyscale(image);
image tocolor(grayimage);