2024-04-14 22:45:38 +02:00

11 lines
106 B
C

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