| 95 | |
| 96 | |
| 97 | AString Printf(const char * format, ...) |
| 98 | { |
| 99 | AString res; |
| 100 | va_list args; |
| 101 | va_start(args, format); |
| 102 | AppendVPrintf(res, format, args); |
| 103 | va_end(args); |
| 104 | return res; |
| 105 | } |
| 106 | |
| 107 | |
| 108 |
no outgoing calls
no test coverage detected