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