I like this style for multiple line comments, but prefer the '//' for single
liners. Two less characters to type after all. :)
> int function(int x)
> {
> /* Bleh. Comments take up space.
> */
> function body;
> }
int function(int x) {
// I like comments. 'Sides, what else would you use the space for?
function body;
}
Cheers!
Jon
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/