1
0
Fork 0
mirror of https://github.com/tailix/drivers.git synced 2026-05-16 02:42:10 -04:00

Implement console printf

This commit is contained in:
Alex Kotov 2022-12-03 20:35:45 +04:00
parent 64e324efb3
commit 3bf16b63e0
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
2 changed files with 26 additions and 0 deletions

View file

@ -13,6 +13,9 @@ void drivers_console_print(const char *s);
void drivers_console_puts(const char *s);
void drivers_console_write(const char *data, size_t size);
__attribute__((format(printf, 1, 2)))
void drivers_console_printf(const char *format, ...);
#ifdef __cplusplus
}
#endif