On 2025-06-22 22:06, Larry McVoy wrote (in part):
I do
if (whatever) stmt;
or
if (whatever that is more complex) {
stmt;
stmt;
stmt;
}
I also do
if ((whatever is complex) || (or even more complex) ||
(something that wouldn't fit in 80 columns) {
stmt;
stmt;
stmt;
}
+1
(That was in our company coding style, too.)
S.