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

11 lines
106 B
C

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