aboutsummaryrefslogtreecommitdiff
path: root/brailleboi.h
diff options
context:
space:
mode:
authorDrNuget <drnuget@outlook.com>2025-11-02 02:06:32 +0200
committerDrNuget <drnuget@outlook.com>2025-11-02 02:06:32 +0200
commit715eccf5d8e937a156190bbb03a93562c59618c5 (patch)
tree2c44b1e90f09941ad01f3273c33a47dc35206aad /brailleboi.h
parent98effe2f3d51dce1f0314e9bfff5082e61ab7ae8 (diff)
parent016253c53f633379ac43d2552e1ba8c6f9180524 (diff)
downloadbrailleboi-0.1.0.tar.gz
Merge branch 'dev'v0.1.0
Diffstat (limited to 'brailleboi.h')
-rw-r--r--brailleboi.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/brailleboi.h b/brailleboi.h
index f909181..f06d0da 100644
--- a/brailleboi.h
+++ b/brailleboi.h
@@ -3,6 +3,7 @@
typedef struct image_buffer {
int width, height;
+ int char_width, char_height;
int* contents;
} image_buffer;
@@ -14,4 +15,8 @@ int brailleReorganizeBits(int old);
void braillePrint(int data);
+int braillePlot(int x, int y, image_buffer* buf);
+
+void brailleUpdateScreen(image_buffer* buf);
+
#endif