mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-03-11 06:54:06 +00:00
22 lines
272 B
C++
22 lines
272 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
template<typename T>
|
|
struct Foo {
|
|
const int32_t *something;
|
|
};
|
|
|
|
struct Bar {
|
|
int32_t something;
|
|
Foo<Bar> subexpressions;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void root(Bar b);
|
|
|
|
} // extern "C"
|