vprintln overloads
Declared in <fmt/base.h>
Formats args according to specifications in fmt and writes the output to the file f followed by a newline.
void
vprintln(
FILE* f,
string_view fmt,
format_args args);
» more...
Formats a string with the given text style using ANSI escape sequences and prints it to the specified file stream followed by a newline.
void
vprintln(
FILE* f,
text_style ts,
string_view fmt,
format_args args);
» more...
| Name | Description |
|---|---|
| f | The file to write to. |
| fmt | The format string. |
| args | The type-erased arguments to format. |
| ts | The text style to apply. |