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

Function acl_vstring_sprintf

lib_acl/src/stdlib/acl_vstring.c:901–909  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

899/* acl_vstring_sprintf - formatted string */
900
901ACL_VSTRING *acl_vstring_sprintf(ACL_VSTRING *vp, const char *format,...)
902{
903 va_list ap;
904
905 va_start(ap, format);
906 vp = acl_vstring_vsprintf(vp, format, ap);
907 va_end(ap);
908 return vp;
909}
910
911/* acl_vstring_vsprintf - format string, vsprintf-like interface */
912

Callers 15

dict_pool_newFunction · 0.85
mainFunction · 0.85
dns_lookupFunction · 0.85
childFunction · 0.85
mainFunction · 0.85
dict_number_mainFunction · 0.85
thread_write_fnFunction · 0.85
__log_openFunction · 0.85
http_error_replyFunction · 0.85
http_service_initFunction · 0.85
__log_openFunction · 0.85
http_error_replyFunction · 0.85

Calls 1

acl_vstring_vsprintfFunction · 0.85

Tested by 1

test_tls_threadFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…