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

Function xstrfmt

strbuf.c:991–1001  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

989}
990
991char *xstrfmt(const char *fmt, ...)
992{
993 va_list ap;
994 char *ret;
995
996 va_start(ap, fmt);
997 ret = xstrvfmt(fmt, ap);
998 va_end(ap);
999
1000 return ret;
1001}
1002
1003void strbuf_addftime(struct strbuf *sb, const char *fmt, const struct tm *tm,
1004 int tz_offset, int suppress_tz_name)

Callers 15

pack_bitmap_filenameFunction · 0.85
git_parse_sourceFunction · 0.85
prefix_path_gentlyFunction · 0.85
read_gitfile_gentlyFunction · 0.85
do_fetch_pack_v2Function · 0.85
trailers_atom_parserFunction · 0.85
grab_common_valuesFunction · 0.85
grab_commit_valuesFunction · 0.85
grab_signatureFunction · 0.85
grab_sub_body_contentsFunction · 0.85

Calls 1

xstrvfmtFunction · 0.85