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

10 lines
251 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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;
}