From f3e6838b44a5b37ce7664db5b8662e3d02e5f539 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 17 Apr 2025 00:51:46 -0400 Subject: font rending in framebuffer yay!! --- kernel/include/lib/kctype.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'kernel/include/lib') diff --git a/kernel/include/lib/kctype.h b/kernel/include/lib/kctype.h index 6d090c6..aee1bb9 100644 --- a/kernel/include/lib/kctype.h +++ b/kernel/include/lib/kctype.h @@ -19,4 +19,9 @@ int isspace(int c); */ int isdigit(int c); +/** + * @returns if a character is ascii printable + */ +int isprint(int c); + #endif /* kctype.h */ -- cgit v1.2.3-freya