MCPcopy Create free account
hub / github.com/acl-dev/acl / vformat

Method vformat

lib_acl_cpp/src/http/HttpServletResponse.cpp:208–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206}
207
208int HttpServletResponse::vformat(const char* fmt, va_list ap)
209{
210 string buf;
211 buf.vformat(fmt, ap);
212 if (!write(buf)) {
213 return -1;
214 }
215 return (int) buf.length();
216}
217
218int HttpServletResponse::format(const char* fmt, ...)
219{

Callers 1

http_header.cppFile · 0.45

Calls 2

writeFunction · 0.50
lengthMethod · 0.45

Tested by

no test coverage detected