MCPcopy Create free account
hub / github.com/dillo-browser/dillo / dStr_vsprintf

Function dStr_vsprintf

dlib/dlib.c:439–445  ·  view source on GitHub ↗

* vsprintf-like function. */

Source from the content-addressed store, hash-verified

437 * vsprintf-like function.
438 */
439void dStr_vsprintf (Dstr *ds, const char *format, va_list argp)
440{
441 if (ds) {
442 dStr_truncate(ds, 0);
443 dStr_vsprintfa(ds, format, argp);
444 }
445}
446
447/**
448 * Printf-like function

Callers 2

dStr_sprintfFunction · 0.85
a_UIcmd_set_msgFunction · 0.85

Calls 2

dStr_truncateFunction · 0.85
dStr_vsprintfaFunction · 0.85

Tested by

no test coverage detected