| 446 | |
| 447 | template <typename Char> |
| 448 | inline void fputs(const Char* chars, FILE* stream) FMT_NOEXCEPT { |
| 449 | std::fputs(chars, stream); |
| 450 | } |
| 451 | |
| 452 | template <> |
| 453 | inline void fputs<wchar_t>(const wchar_t* chars, FILE* stream) FMT_NOEXCEPT { |
no outgoing calls
no test coverage detected