11 lines
159 B
C
11 lines
159 B
C
![]() |
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
typedef struct decoded_image {
|
||
|
size_t width;
|
||
|
size_t height;
|
||
|
uint32_t *buf;
|
||
|
size_t buf_size;
|
||
|
} decoded_image;
|