13 lines
165 B
C
Raw Normal View History

void OneFunction();
void FourFunction();
void ThreeFunction()
{
static int count = 0;
2016-07-09 11:21:54 +02:00
if (count == 0) {
++count;
FourFunction();
}
OneFunction();
}