1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-06-30 18:42:46 -04:00
libkernaux/include/kernaux/console.h
2020-12-06 09:45:48 +05:00

19 lines
423 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_printf(const char *format, ...)
__attribute__((format(printf, 1, 2)));
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