#include "io.h"
Functions | |
unsigned int | putc (const char chr) |
Put one char to console. | |
unsigned int | puts (const char *str) |
Put null terminated string to console. | |
unsigned int | printk (const char *format,...) |
Put formated string to the console. | |
unsigned int | printk_unwind (const char *format, void *arguments) |
Put formated string to the console. |
unsigned int printk | ( | const char * | format, | |
... | ||||
) |
Put formated string to the console.
format | - format null terminated format string | |
... | - arguments c for characters, s for strings, d, u, i for integers, x for integers in hexadecimal format, p pointers without modifier for aligning and valid digits. |
unsigned int printk_unwind | ( | const char * | format, | |
void * | arguments | |||
) |
Put formated string to the console.
format | - formated null terminated format string | |
arguments | - void pointer to arguments stored in the memory "in the line" |
unsigned int putc | ( | const char | chr | ) |
Put one char to console.
chr | - char to put |
unsigned int puts | ( | const char * | str | ) |
Put null terminated string to console.
str | - pointer to null terminatted string |