mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-05 10:39:41 +00:00
24 lines
311 B
C++
24 lines
311 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
static const int8_t FOURTY_FOUR = 4;
|
|
|
|
enum class E : int8_t {
|
|
A = 1,
|
|
B = -1,
|
|
C = (1 + 2),
|
|
D = FOURTY_FOUR,
|
|
F = 5,
|
|
G = (int8_t)54,
|
|
H = (int8_t)false,
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void root(const E*);
|
|
|
|
} // extern "C"
|