blob: 26b22e2cf3e7939b2cfab30c3c278e648a41c834 [file] [log] [blame]
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;
}