1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/kernelmq/console.h

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