KernOS
kprintf.h
Go to the documentation of this file.
1 //
2 // Created on 5/24/20.
3 //
4 
5 #ifndef KERNOS_KPRINTF_H
6 #define KERNOS_KPRINTF_H
7 
11 void kprintf(const char* Str);
12 
13 #endif //KERNOS_KPRINTF_H
void kprintf(const char *Str)
Prints string to display.
Definition: kprintf.cpp:13