Console::printFormat is a printf() style function

This commit is contained in:
Eryn Wells 2016-03-13 13:56:21 -04:00
parent d5c7ded8c9
commit d62bc7f9d4

View file

@ -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);