| 656 | |
| 657 | template <typename S, typename Char = char_t<S>> |
| 658 | inline int vprintf( |
| 659 | const S& format, |
| 660 | basic_format_args<basic_printf_context_t<type_identity_t<Char>>> args) { |
| 661 | return vfprintf(stdout, to_string_view(format), args); |
| 662 | } |
| 663 | |
| 664 | /** |
| 665 | \rst |
no test coverage detected