You cannot 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
C
33 lines
349 B
C
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;
|
|
}
|