2025-06-10 07:22:49 +02:00

16 lines
182 B
C

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