1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-10-30 11:54:01 -04:00
libkernaux/include/kernaux/console.h.in

23 lines
479 B
C
Raw Normal View History

2020-11-30 06:32:12 -05:00
#ifndef KERNAUX_INCLUDED_CONSOLE
2021-12-20 01:17:53 -05:00
#define KERNAUX_INCLUDED_CONSOLE
2020-11-30 06:32:12 -05:00
#ifdef __cplusplus
extern "C" {
#endif
2021-12-16 10:26:16 -05:00
#include <stddef.h>
void kernaux_console_putc(char c);
2020-11-30 06:32:12 -05:00
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)));
2020-11-30 06:32:12 -05:00
void kernaux_console_puts(const char *s);
2021-12-16 10:26:16 -05:00
void kernaux_console_write(const char *data, size_t size);
2020-11-30 06:32:12 -05:00
#ifdef __cplusplus
}
#endif
#endif