void foo()
{
again:
switch(asdf){
case 1:
...
break;
default:
...
break;
}
}
if(foo){ bar() }).
void foo(int a, int b)
{
if(a==b && c+d==e){
...
}
}
has correct style while the block
void foo(int a,int b) {
if (a == b && c + d == e) {
...
}
}
does not.
/*{{{ Many related functions */
void code()
{
...
}
...
/*}}}*/