/* * That's my current indentation style I want to follow. Code of mine not * following this might just need an update. * */ typedef new_type; variable = value; function( argument1, argument2) { variable1 = value; variable2 = value; if (foo == foo) { bar(); baz(); } else quux(); for (i = 0; i < N; i++) { bar(); } while (foo) { bar(); } switch (foo) { case a: bar(); break; case b: default: baz(); break; } goto label; label: return foo; }