The One True Brace Style, the correct way to indent C code. For example:

if(foo()){
    bar();
}else{
    baz();
}

Also known as K&R style. Other inferior indent styles include Allman, the (nasty) Whitesmiths, and the (very nasty) GNU style.