You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
524 B

int foo(int op)
{
switch (op)
{
case 1:
do_something();
break;
case 2:
do_something_else();
case 3:
if (do_something_different())
{
do_this();
break; // this should be indented like the surrounding code
}
do_something_more();
break;
}
return -1;
for (;;)
{
break;
}
}