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