mirror of
https://github.com/tailix/kernel.git
synced 2024-11-27 11:24:34 -05:00
9 lines
232 B
C
9 lines
232 B
C
#ifndef KERNELMQ_INCLUDED_CONSOLE
|
|
#define KERNELMQ_INCLUDED_CONSOLE 1
|
|
|
|
void console_print(const char *s);
|
|
void console_putc(char c);
|
|
void console_puts(const char *s);
|
|
void console_write(const char *data, unsigned int size);
|
|
|
|
#endif
|