Thread (167 messages) 167 messages, 8 authors, 2018-11-09

Re: [GSoC][PATCH v8 17/20] stash: convert save to builtin

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;
        }
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help