RosettaCodeData/Task/Grayscale-image/C/grayscale-image-1.c

13 lines
302 B
C
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
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);