MCPcopy Create free account
hub / github.com/F-Stack/f-stack / nvlist_add_stringf

Function nvlist_add_stringf

freebsd/contrib/libnv/nvlist.c:1488–1496  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1486}
1487
1488void
1489nvlist_add_stringf(nvlist_t *nvl, const char *name, const char *valuefmt, ...)
1490{
1491 va_list valueap;
1492
1493 va_start(valueap, valuefmt);
1494 nvlist_add_stringv(nvl, name, valuefmt, valueap);
1495 va_end(valueap);
1496}
1497
1498void
1499nvlist_add_stringv(nvlist_t *nvl, const char *name, const char *valuefmt,

Callers

nothing calls this directly

Calls 1

nvlist_add_stringvFunction · 0.85

Tested by

no test coverage detected