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.
33 lines
349 B
33 lines
349 B
4 years ago
|
void foo()
|
||
|
{
|
||
|
if (myBoolean) {
|
||
|
#ifdef DEBUG
|
||
|
printf("ACK");
|
||
|
#endif
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void foo2()
|
||
|
{
|
||
|
if (m_errno == ERR_NONE) {
|
||
|
function1(variables);
|
||
|
function2(variables);
|
||
|
} else {
|
||
|
function1(varialbes);
|
||
|
}
|
||
|
//MyComment1
|
||
|
//MyComment2
|
||
|
}
|
||
|
|
||
|
void foo3()
|
||
|
{
|
||
|
if (statment) {
|
||
|
if (statment) {
|
||
|
condition;
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|