Thread (22 messages) flat view 22 messages, 3 authors, 2016-06-16

Re: [PATCH v2 02/12] attr.c: use strchrnul() to scan for one line

From: Junio C Hamano <hidden>
Date: 2016-06-16 02:19:25

On Mon, May 16, 2016 at 4:28 PM, Stefan Beller [off-list ref] wrote:
quoted
        for (sp = buf; *sp; ) {
                char *ep;
                int more;
-               for (ep = sp; *ep && *ep != '\n'; ep++)
-                       ;
+
+               ep = strchrnul(sp, '\n');
(Even lesser nit as in patch 1)
You could directly assign ep and more when declaring them.
I'd prefer not to.

"A declaration block, blank and statement" pattern allows you
to have the declaration of variables to group related things
together and in an order that makes it easier to explain.
If you throw in initialization there, you cannot do that anymore
(e.g. ep must be initialized before you can compute more).
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help