Am Donnerstag 18 April 2013, 13:56:20 schrieb Keith Marshall:
> I confess to a personal stylistic preference for
> placement of the operator at the start of a continuation line; this is
> the style I always prefer in makefiles.
+1
and for C code as well.
I look at it as this:
If this
or this
and that
do
>From the
GNU Coding Standards
Richard Stallman, et al.
last updated March 8, 2013
------------
When you split an expression into multiple lines, split it before an operator,
not after
one. Here is the right way:
if (foo_this_is_long && bar > win (x, y, z)
&& remaining_condition)
-------
regards
Heinz