MCPcopy Index your code
hub / github.com/git/git / xstrvfmt

Function xstrvfmt

strbuf.c:984–989  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

982}
983
984char *xstrvfmt(const char *fmt, va_list ap)
985{
986 struct strbuf buf = STRBUF_INIT;
987 strbuf_vaddf(&buf, fmt, ap);
988 return strbuf_detach(&buf, NULL);
989}
990
991char *xstrfmt(const char *fmt, ...)
992{

Callers 3

refspec_appendfFunction · 0.85
xstrfmtFunction · 0.85
issue_imap_cmdFunction · 0.85

Calls 2

strbuf_vaddfFunction · 0.85
strbuf_detachFunction · 0.85

Tested by 1

refspec_appendfFunction · 0.68