| 498 | |
| 499 | template <typename S, typename Char = char_t<S>> |
| 500 | void vprint(std::FILE* f, const text_style& ts, const S& format, |
| 501 | basic_format_args<buffer_context<Char>> args) { |
| 502 | basic_memory_buffer<Char> buf; |
| 503 | internal::vformat_to(buf, ts, to_string_view(format), args); |
| 504 | buf.push_back(Char(0)); |
| 505 | internal::fputs(buf.data(), f); |
| 506 | } |
| 507 | |
| 508 | /** |
| 509 | Formats a string and prints it to the specified file stream using ANSI |
no test coverage detected