aboutsummaryrefslogtreecommitdiff
path: root/brailleboi.h
diff options
context:
space:
mode:
Diffstat (limited to 'brailleboi.h')
-rw-r--r--brailleboi.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/brailleboi.h b/brailleboi.h
new file mode 100644
index 0000000..87d3e35
--- /dev/null
+++ b/brailleboi.h
@@ -0,0 +1,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