Function body layout

With the body of functions, this is the way we aim to do it...we're not religious about it, but consistency helps. If you think your way is smarter, you may be right but this is the way we do it.

Whatever you do, NEVER make global changes to the indentation etc in a file without agreement from me first. (It screws up diffs and cde management as well as people).

Indentation

if (cb[k]==0) { /* if black */ foo = bar; } else { /* if white */ foo = foobar; } /* if white */ } /* switch on character */ } /* loop on lines */ } /* scan_lines() */ _________________________________________________________________
Tim BL