mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
18 lines
331 B
C
18 lines
331 B
C
|
#ifndef KERNAUX_INCLUDED_CONSOLE
|
||
|
#define KERNAUX_INCLUDED_CONSOLE 1
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void kernaux_console_print(const char *s);
|
||
|
void kernaux_console_putc(char c);
|
||
|
void kernaux_console_puts(const char *s);
|
||
|
void kernaux_console_write(const char *data, unsigned int size);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|