2025-06-10 07:20:44 +02:00

11 lines
141 B
C

#include <stdint.h>
typedef struct {
int width;
int height;
int channels;
uint8_t* data;
} image_t;
void free_image(image_t* img);