mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
17 lines
321 B
C++
17 lines
321 B
C++
#ifndef TEST_INTEROP_CXX_EXTERN_VAR_INPUTS_EXTERN_VAR_H
|
|
#define TEST_INTEROP_CXX_EXTERN_VAR_INPUTS_EXTERN_VAR_H
|
|
|
|
extern int counter;
|
|
|
|
int getCounterFromCxx();
|
|
void setCounterFromCxx(int);
|
|
|
|
namespace Namespaced {
|
|
extern int counter;
|
|
|
|
int getCounterFromCxx();
|
|
void setCounterFromCxx(int);
|
|
} // namespace Namespaced
|
|
|
|
#endif
|