From 866a6ca0e749f4446b7fdc7579a6d553df85ec10 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Wed, 5 Jan 2022 14:27:09 -0800 Subject: Moved includes to its own directory --- include/graphics/drawer.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 include/graphics/drawer.h (limited to 'include/graphics/drawer.h') diff --git a/include/graphics/drawer.h b/include/graphics/drawer.h new file mode 100644 index 0000000..6d97163 --- /dev/null +++ b/include/graphics/drawer.h @@ -0,0 +1,27 @@ +#ifndef GRAPHICS_DRAWER_H +#define GRAPHICS_DRAWER_H + +struct Drawer { + unsigned int x; + unsigned int y; +}; + +#ifndef GRAPHICS_DRAWER_C +extern struct Drawer g_Drawer; +#endif + +void write_cchar(struct Drawer* d, char s, unsigned int c); +void write_char(struct Drawer* d, char s); + +void write_cstring(struct Drawer* d, char* s, unsigned int c); +void write_string(struct Drawer* d, char* s); + +void write_chex32(struct Drawer* d, unsigned long val, unsigned int c); +void write_hex32(struct Drawer* d, unsigned long val); + +void write_c10(struct Drawer* d, unsigned long val, unsigned int c); +void write_10(struct Drawer* d, unsigned long val); + +void set_drawer(struct Drawer* d, unsigned int x, unsigned int y); + +#endif -- cgit v1.2.1