MCPcopy Create free account
hub / github.com/git/git / packet_write_fmt_gently

Function packet_write_fmt_gently

pkt-line.c:191–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

189}
190
191int packet_write_fmt_gently(int fd, const char *fmt, ...)
192{
193 int status;
194 va_list args;
195
196 va_start(args, fmt);
197 status = packet_write_fmt_1(fd, 1, "", fmt, args);
198 va_end(args);
199 return status;
200}
201
202static int do_packet_write(const int fd_out, const char *buf, size_t size,
203 struct strbuf *err)

Callers 5

apply_multi_file_filterFunction · 0.85
handshake_versionFunction · 0.85
handshake_capabilitiesFunction · 0.85
run_proc_receive_hookFunction · 0.85

Calls 1

packet_write_fmt_1Function · 0.85

Tested by

no test coverage detected