Console::printFormat is a printf() style function
This commit is contained in:
parent
d5c7ded8c9
commit
d62bc7f9d4
1 changed files with 2 additions and 1 deletions
|
@ -62,7 +62,8 @@ struct Console
|
|||
* Write a format string to the current cursor position. Returns the number
|
||||
* of characters printed.
|
||||
*/
|
||||
int printFormat(const char *format, ...);
|
||||
int printFormat(const char *format, ...)
|
||||
__attribute__((format (printf, 2, 3)));
|
||||
|
||||
void setColor(Color fg, Color bg);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue