| 794 | |
| 795 | template <typename S, typename Char = FMT_CHAR(S)> |
| 796 | inline int vprintf(const S &format, |
| 797 | basic_format_args<typename basic_printf_context_t< |
| 798 | internal::basic_buffer<Char>>::type> args) { |
| 799 | return vfprintf(stdout, to_string_view(format), args); |
| 800 | } |
| 801 | |
| 802 | /** |
| 803 | \rst |
no test coverage detected