#ifndef BRAILLEBOI_H #define BRAILLEBOI_H typedef struct image_buffer { int width, height; int* contents; } image_buffer; int brailleInit(int, int, image_buffer*); int brailleStop(image_buffer*); #endif