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

Function nvpair_create_stringf

freebsd/contrib/libnv/bsd_nvpair.c:1173–1184  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1171}
1172
1173nvpair_t *
1174nvpair_create_stringf(const char *name, const char *valuefmt, ...)
1175{
1176 va_list valueap;
1177 nvpair_t *nvp;
1178
1179 va_start(valueap, valuefmt);
1180 nvp = nvpair_create_stringv(name, valuefmt, valueap);
1181 va_end(valueap);
1182
1183 return (nvp);
1184}
1185
1186nvpair_t *
1187nvpair_create_stringv(const char *name, const char *valuefmt, va_list valueap)

Callers

nothing calls this directly

Calls 1

nvpair_create_stringvFunction · 0.85

Tested by

no test coverage detected