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

Function acl_vstring_vsprintf_append

lib_acl/src/stdlib/acl_vstring.c:935–940  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

933/* acl_vstring_vsprintf_append - append format string, vsprintf-like interface */
934
935ACL_VSTRING *acl_vstring_vsprintf_append(ACL_VSTRING *vp, const char *format, va_list ap)
936{
937 acl_vbuf_print(&vp->vbuf, format, ap);
938 ACL_VSTRING_TERMINATE(vp);
939 return vp;
940}
941
942/* acl_vstring_sprintf_prepend - format + prepend string, vsprintf-like interface */
943

Callers 4

string.cppFile · 0.85
http_hdr_put_fmtFunction · 0.85

Calls 1

acl_vbuf_printFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…