11 lines
141 B
C
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);
|