1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-13 11:04:27 -05:00
libkernaux/include/kernaux/console.h

18 lines
331 B
C
Raw Normal View History

2020-11-30 06:32:12 -05:00
#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