mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-13 08:45:07 +02:00
13 lines
209 B
C
13 lines
209 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct StyleA StyleA;
|
|
|
|
typedef struct B {
|
|
int32_t x;
|
|
float y;
|
|
} B;
|
|
|
|
void root(const struct StyleA *a, struct B b);
|