diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-11-27 20:03:41 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-11-27 20:03:41 +0100 |
commit | 0c1d5e64c32f9e35264910d6defb693829df6f52 (patch) | |
tree | 042b3ae06da8af4e8cbd3babdfa9702c67517ef6 /stage3/font.h | |
parent | 8b9f33dd745ebba0e819927ab3906635bfb3bf34 (diff) | |
download | cuddles-0c1d5e64c32f9e35264910d6defb693829df6f52.tar.xz |
font fixes
Diffstat (limited to 'stage3/font.h')
-rw-r--r-- | stage3/font.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/stage3/font.h b/stage3/font.h index fd2f2c0..2f43e9e 100644 --- a/stage3/font.h +++ b/stage3/font.h @@ -1,6 +1,10 @@ #ifndef _FONT_H_ #define _FONT_H_ -void println(char *line); +#include "def.h" + +void print(char *line); +void set_font_size(u16 size); +void print_char(char c); #endif |