#PrettyPrint.c
09-Jan-88 00:12:00
Sb: #102248-#PrettyPrint.c
Fm: Don Curtis/SYSOP 76703,4321
To: Ben Blish 72667,1341
Ben,
But what if I like UNIX formatting? <grin>
I'll have to look at it, I like bracing like this:
if (….) {
do_this();
}
rather than:
if (…)
{
do_this();
}
I must admit I thought I'd like the 2nd method more when I first
started with C, but the folks I was working with had started out with the first
method and so I had to use it…and learned to like it. Now when I see code
the other way (2nd example)…it seems real awkard. Plus, I am doing alot of
programming under UNIX and all their example code is like example 1.
Don