mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
22 lines
479 B
C
22 lines
479 B
C
#ifndef KERNAUX_INCLUDED_CONSOLE
|
|
#define KERNAUX_INCLUDED_CONSOLE
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
|
|
void kernaux_console_putc(char c);
|
|
|
|
void kernaux_console_print(const char *s);
|
|
@comment_line_printf@void kernaux_console_printf(const char *format, ...)
|
|
@comment_line_printf@__attribute__((format(printf, 1, 2)));
|
|
void kernaux_console_puts(const char *s);
|
|
void kernaux_console_write(const char *data, size_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|