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

Function strbuf_insertf

strbuf.c:296–302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

294}
295
296void strbuf_insertf(struct strbuf *sb, size_t pos, const char *fmt, ...)
297{
298 va_list ap;
299 va_start(ap, fmt);
300 strbuf_vinsertf(sb, pos, fmt, ap);
301 va_end(ap);
302}
303
304void strbuf_remove(struct strbuf *sb, size_t pos, size_t len)
305{

Callers 5

repair_worktree_at_pathFunction · 0.85
cmd_format_patchFunction · 0.85
do_create_stashFunction · 0.85

Calls 1

strbuf_vinsertfFunction · 0.85

Tested by

no test coverage detected