fmt::fprintf

Formats args according to specifications in fmt and writes the output to f.

Synopses

Declared in <fmt/printf.h>

Formats args according to specifications in fmt and writes the output to f.

template<typename... T>
int
fprintf(
    FILE* f,
    string_view fmt,
    T const...&... args);
» more...
template<typename... T>
[[deprecated]]
int
fprintf(
    FILE* f,
    basic_string_view<wchar_t> fmt,
    T const...&... args);
» more...

Created with MrDocs