blob: 87d3e357492b6c2b763d391659971e9cd6f95ca8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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
|