blob: 9cde8bbd901a6027b6ee288fab9f5232753cb897 [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;
}