#include #include "brailleboi.h" int brailleInit(int width, int height, image_buffer* buf) { buf->contents = malloc((width * height) * sizeof(int)); buf->width = width; buf->height = height; } int brailleStop(image_buffer* buf) { free(buf->contents); }