| 216 | } |
| 217 | |
| 218 | int HttpServletResponse::format(const char* fmt, ...) |
| 219 | { |
| 220 | va_list ap; |
| 221 | va_start(ap, fmt); |
| 222 | int ret = vformat(fmt, ap); |
| 223 | va_end(ap); |
| 224 | return ret; |
| 225 | } |
| 226 | |
| 227 | bool HttpServletResponse::write(const xml& body, const char* charset /* utf-8 */) |
| 228 | { |
no test coverage detected