aboutsummaryrefslogtreecommitdiff
path: root/brailleboi.h
diff options
context:
space:
mode:
authorDrNuget <drnuget@outlook.com>2025-10-29 17:57:05 +0200
committerDrNuget <drnuget@outlook.com>2025-10-29 17:57:05 +0200
commit77afd633c610e8bfde1b66384e9309cdf249ccbb (patch)
tree89b3ded87a67220f2a762ff9ae16ab6171ea1fe0 /brailleboi.h
downloadbrailleboi-77afd633c610e8bfde1b66384e9309cdf249ccbb.tar.gz
initial commit, only boilerplate
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