9 lines
119 B
C
9 lines
119 B
C
#include "test_func.h"
|
|
|
|
int testFunctionCounter = 0;
|
|
|
|
int testFunction()
|
|
{
|
|
testFunctionCounter++;
|
|
return 42;
|
|
}
|