mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-12 08:15:06 +02:00
31 lines
325 B
C++
31 lines
325 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
struct A {
|
|
const int32_t *data;
|
|
};
|
|
|
|
struct E {
|
|
enum class Tag {
|
|
V,
|
|
U,
|
|
};
|
|
|
|
struct U_Body {
|
|
const uint8_t *_0;
|
|
};
|
|
|
|
Tag tag;
|
|
union {
|
|
U_Body u;
|
|
};
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void root(A _a, E _e);
|
|
|
|
} // extern "C"
|