| 153 | */ |
| 154 | template <typename... Ts> |
| 155 | inline int snprintf(char *s, size_t n, const char *fmt, Ts &&...args) |
| 156 | { |
| 157 | return ::snprintf(s, n, fmt, std::forward<Ts>(args)...); |
| 158 | } |
| 159 | #else /* (__ANDROID__ || BARE_METAL) */ |
| 160 | /** Rounds the floating-point argument arg to an integer value in floating-point format, using the current rounding mode. |
| 161 | * |
no outgoing calls
no test coverage detected