| 64 | extern "C++" { |
| 65 | |
| 66 | template <typename... Args> int snprintf(char* buf, size_t length, const char* fmt, Args... args) |
| 67 | { |
| 68 | return m_snprintf(buf, length, fmt, args...); |
| 69 | } |
| 70 | |
| 71 | template <typename... Args> int printf(const char* fmt, Args... args) |
| 72 | { |
nothing calls this directly
no test coverage detected