aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics/graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/graphics/graphics.h')
-rw-r--r--src/kernel/graphics/graphics.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/kernel/graphics/graphics.h b/src/kernel/graphics/graphics.h
index e20d1ed..118fe50 100644
--- a/src/kernel/graphics/graphics.h
+++ b/src/kernel/graphics/graphics.h
@@ -34,6 +34,12 @@ void terminal_clear();
void terminal_write_string(const char *data);
/**
+ * Write an integer to the terminal
+ * @param data The integer that should be written
+ */
+void terminal_write_number(int data);
+
+/**
* Put a new char at the x+1 cursor position and
* handle according events (e.g. overflow, linebreak)
* @param c The character (can also be \n or \r)