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

Function acl_vstring_sprintf_append

lib_acl/src/stdlib/acl_vstring.c:923–931  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

921/* acl_vstring_sprintf_append - append formatted string */
922
923ACL_VSTRING *acl_vstring_sprintf_append(ACL_VSTRING *vp, const char *format,...)
924{
925 va_list ap;
926
927 va_start(ap, format);
928 vp = acl_vstring_vsprintf_append(vp, format, ap);
929 va_end(ap);
930 return vp;
931}
932
933/* acl_vstring_vsprintf_append - append format string, vsprintf-like interface */
934

Callers 15

escapeFunction · 0.85
str_name_mask_optFunction · 0.85
incr_stringFunction · 0.85
dns_lookupFunction · 0.85
acl_foreachFunction · 0.85
test_selectFunction · 0.85
childFunction · 0.85
__log_openFunction · 0.85
__log_openFunction · 0.85
acl_xml2_dump2Function · 0.85
acl_xml_dump2Function · 0.85
__load_tmplFunction · 0.85

Calls 1

Tested by 1

test_selectFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…