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

Function acl_vstream_fprintf

lib_acl/src/stdlib/acl_vstream.c:1847–1862  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1845}
1846
1847int acl_vstream_fprintf(ACL_VSTREAM *fp, const char *fmt, ...)
1848{
1849 va_list ap;
1850 int n;
1851
1852 if (fp == NULL || fmt == NULL) {
1853 acl_msg_error("%s, %s(%d): input invalid",
1854 __FUNCTION__, __FILE__, __LINE__);
1855 return ACL_VSTREAM_EOF;
1856 }
1857
1858 va_start(ap, fmt);
1859 n = acl_vstream_vfprintf(fp, fmt, ap);
1860 va_end(ap);
1861 return n;
1862}
1863
1864int acl_vstream_printf(const char *fmt, ...)
1865{

Callers 15

fiber_server.cppFile · 0.85
do_echoFunction · 0.85
fiber_clientFunction · 0.85
client_wakeupFunction · 0.85
test_connectFunction · 0.85
mainFunction · 0.85
endFunction · 0.85
vstream_clientFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
echoFunction · 0.85

Calls 2

acl_msg_errorFunction · 0.85
acl_vstream_vfprintfFunction · 0.85

Tested by 3

do_echoFunction · 0.68
test_connectFunction · 0.68
test_connectFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…