Re: [GSoC][PATCH v8 17/20] stash: convert save to builtin
From: Eric Sunshine <hidden>
Date: 2018-09-03 19:07:07
From: Eric Sunshine <hidden>
Date: 2018-09-03 19:07:07
On Mon, Sep 3, 2018 at 2:44 PM Johannes Schindelin [off-list ref] wrote:
where `strbuf_join_argv()` would be implemented like this (and I would put
it into strbuf.c and strbuf.h:
const char *strbuf_join_argv(struct strbuf *buf,
int argc, const char **argv, char delim)
{
if (!argc)
return buf->buf;
strbuf_addstr(buf, *argv);
while (--i) {s/i/argc/
strbuf_addch(buf, delim);
strbuf_addstr(buf, *(++argv);
}
return buf->buf;
}