aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDrNuget <drnuget@outlook.com>2025-12-27 05:13:48 +0200
committerDrNuget <drnuget@outlook.com>2025-12-27 05:13:48 +0200
commitd7e2dd842af87d0014fdb210286d0eb86a2e5934 (patch)
treed39e7039eb33ee1c3322e4b069acb49127b4acdb /src
parentfc35c0f8ed323d70c8f02dd131c9a531d02f6cab (diff)
downloadbrailleboi-d7e2dd842af87d0014fdb210286d0eb86a2e5934.tar.gz
move header file to include folderHEADmaster
Diffstat (limited to 'src')
-rw-r--r--src/brailleboi.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/brailleboi.h b/src/brailleboi.h
deleted file mode 100644
index 26ada93..0000000
--- a/src/brailleboi.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef BRAILLEBOI_H
-#define BRAILLEBOI_H
-
-typedef struct image_buffer {
- int width, height;
- int char_width, char_height;
- int* contents;
-} image_buffer;
-
-int brailleInit(int width, int height, image_buffer* buf);
-
-int brailleStop(image_buffer* buf);
-
-int brailleReorganizeBits(int old);
-
-void braillePrint(int data);
-
-int braillePlot(int x, int y, image_buffer* buf);
-
-void brailleClearBuffer(image_buffer* buf);
-
-void brailleUpdateScreen(image_buffer* buf);
-
-#endif