1 #ifndef MB_UTILS_H
2 #define MB_UTILS_H
3 
4 #include "kernel/kernel.h"
5 
6 void direct_cls(void);
7 void direct_print(const char*);
8 void direct_print_char(char);
9 int direct_read_char(unsigned char*);
10 
11 #endif
12