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).