C format

utzoo!decvax!ittvax!bunker!kirk utzoo!decvax!ittvax!bunker!kirk
Fri Oct 22 13:23:22 AEST 1982


My gripe at the way C is formatted in the "white book" is not the position
of the closing 'curly bracket', but of the opening one.

Thus instead of:-

	if (......) {
		..........
		..........
	}

I prefer to use

	if (.......)
	{
		..........
		..........
	}

This makes it easier to check that brackets are paired with the one you
intended.



More information about the Comp.lang.c mailing list