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

Function acl_vstring_vsprintf

lib_acl/src/stdlib/acl_vstring.c:913–919  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

911/* acl_vstring_vsprintf - format string, vsprintf-like interface */
912
913ACL_VSTRING *acl_vstring_vsprintf(ACL_VSTRING *vp, const char *format, va_list ap)
914{
915 ACL_VSTRING_RESET(vp);
916 acl_vbuf_print(&vp->vbuf, format, ap);
917 ACL_VSTRING_TERMINATE(vp);
918 return vp;
919}
920
921/* acl_vstring_sprintf_append - append formatted string */
922

Callers 7

test_vstring_vsprintfFunction · 0.85
acl_vstream_vfprintfFunction · 0.85
acl_vstring_sprintfFunction · 0.85
acl_aio_vfprintfFunction · 0.85
string.cppFile · 0.85
error_with_contextFunction · 0.85

Calls 1

acl_vbuf_printFunction · 0.85

Tested by 1

test_vstring_vsprintfFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…