MCPcopy Create free account
hub / github.com/apache/trafficserver / ink_bsprintf

Function ink_bsprintf

src/tscore/ink_sprintf.cc:52–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50//////////////////////////////////////////////////////////////////////////////
51
52int
53ink_bsprintf(char *buffer, const char *format, ...)
54{
55 int l;
56
57 va_list ap;
58 va_start(ap, format);
59 l = ink_bvsprintf(buffer, format, ap);
60 va_end(ap);
61
62 return (l);
63}
64
65int
66ink_bvsprintf(char *buffer, const char *format, va_list ap)

Callers

nothing calls this directly

Calls 1

ink_bvsprintfFunction · 0.85

Tested by

no test coverage detected