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

10 lines
251 B
C
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
grayimage alloc_grayimg(unsigned int width, unsigned int height)
{
grayimage img;
img = malloc(sizeof(grayimage_t));
img->buf = malloc(width*height*sizeof(pixel1));
img->width = width;
img->height = height;
return img;
}