| 397 | } |
| 398 | |
| 399 | void AbstractString::printf(const char* format,...) |
| 400 | { |
| 401 | va_list params; |
| 402 | va_start(params, format); |
| 403 | vprintf(format, params); |
| 404 | va_end(params); |
| 405 | } |
| 406 | |
| 407 | // Need macros here - va_copy()/va_end() should be called in SAME function |
| 408 | #ifdef HAVE_VA_COPY |
no test coverage detected