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:
parent
64e324efb3
commit
3bf16b63e0
2 changed files with 26 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue