mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-12 08:15:06 +02:00
13 lines
172 B
C
13 lines
172 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct A {
|
|
int32_t x;
|
|
float y;
|
|
} A;
|
|
|
|
typedef struct B {
|
|
struct A data;
|
|
} B;
|