11 lines
132 B
C
Raw Normal View History

#include <two-test.h>
2024-04-14 22:45:38 +02:00
void TwoFunction(void)
{
static int count = 0;
2016-07-09 11:21:54 +02:00
if (count == 0) {
++count;
ThreeFunction();
}
}