1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2025-08-07 22:06:26 -04:00
kernel/kernelmq/console.h
2020-11-25 14:37:15 +05:00

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