aboutsummaryrefslogtreecommitdiff
path: root/src/utils/print.h
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2021-04-04 14:03:26 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2021-04-04 14:03:26 +0200
commit48a608c8959fc696184bc1af2f67ecd07c0381ba (patch)
tree88e69733c3d85d289dc48b0d298daeaf721d0587 /src/utils/print.h
parent969f81bd7e2c0ccb07b9d49c6265421ce86369e0 (diff)
Add utilities functions
Diffstat (limited to 'src/utils/print.h')
-rw-r--r--src/utils/print.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/utils/print.h b/src/utils/print.h
index 51ed076..fb1badd 100644
--- a/src/utils/print.h
+++ b/src/utils/print.h
@@ -2,6 +2,12 @@
#define PRINT_H
+/**
+ * Print char
+ */
void putchar(char);
+void print(char*);
+void scrollup();
+void clear();
#endif