16 lines
182 B
C
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
|