2016-07-09 11:21:54 +02:00

11 lines
98 B
C

void TwoFunc();
void OneFunc()
{
static int i = 0;
++i;
if (i == 1) {
TwoFunc();
}
}