11 lines
177 B
C
11 lines
177 B
C
// Copyright (c) Lysann Tranvouez. All rights reserved.
|
|
|
|
#include "test_func.h"
|
|
|
|
int testFunctionCounter = 0;
|
|
|
|
int testFunction()
|
|
{
|
|
testFunctionCounter++;
|
|
return 42;
|
|
}
|