15 lines
194 B
C
15 lines
194 B
C
// Copyright (c) Lysann Tranvouez. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int testFunctionCounter;
|
|
|
|
int testFunction();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|