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

23 lines
458 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, ...)
__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