1 2 3 4 5 6 7 8
#ifndef __COMMON__ #define __COMMON__ #include <stdint.h> typedef struct Image { uint8_t *data; int32_t width, height, pixel_bits; } Image; #endif