ArvernOS
|
Functions | |
void | console_init (multiboot_tag_framebuffer_common_t *common) |
void | console_putchar (char c) |
size_t | console_write (const char *s, size_t count) |
bool | console_mode_is_vbe () |
bool | console_fullscreen () |
bool console_fullscreen | ( | ) |
Switches a console into "fullscreen", i.e. respects the VBE dimensions instead of the default one.
true
if the mode is VBE (graphics), false
otherwise void console_init | ( | multiboot_tag_framebuffer_common_t * | common | ) |
Initializes the console (VT100).
bool console_mode_is_vbe | ( | ) |
Indicates whether the console is initialized with VBE mode.
true
if the mode is VBE (graphics), false
otherwise void console_putchar | ( | char | c | ) |
Prints a character to the console.
c | the character to print |
size_t console_write | ( | const char * | s, |
size_t | count ) |
Writes a string to the console.
s | the string to write to the console |
count | the number of characters to write |