mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-12 08:15:06 +02:00
23 lines
366 B
C
23 lines
366 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct Foo_Bar {
|
|
const int32_t *something;
|
|
} Foo_Bar;
|
|
|
|
typedef union Bar {
|
|
int32_t something;
|
|
struct Foo_Bar subexpressions;
|
|
} Bar;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
void root(union Bar b);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif // __cplusplus
|