MCPcopy Create free account
hub / github.com/Sapd/HeadsetControl / _asprintf

Function _asprintf

src/utility.c:382–393  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

380}
381
382int _asprintf(char** str, const char* fmt, ...)
383{
384 va_list ap;
385 int ret;
386
387 *str = NULL;
388 va_start(ap, fmt);
389 ret = vasprintf(str, fmt, ap);
390 va_end(ap);
391
392 return ret;
393}
394
395// ----------------- -------------------- -----------------

Callers 2

handle_featureFunction · 0.85
initializeHeadsetInfoFunction · 0.85

Calls 1

vasprintfFunction · 0.85

Tested by

no test coverage detected