#ifndef IMAGE_H #define IMAGE_H #include typedef struct { int width; int height; int channels; uint8_t* data; } image_t; void free_image(image_t* img); #endif