11 lines
106 B
C
Raw Normal View History

2024-04-14 22:45:38 +02:00
void OneFunc(void);
2024-04-14 22:45:38 +02:00
void TwoFunc(void)
{
static int i = 0;
++i;
2016-07-09 11:21:54 +02:00
if (i == 1) {
OneFunc();
}
}