mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-13 22:41:57 +00:00
12 lines
189 B
C
12 lines
189 B
C
|
#include <stdarg.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
typedef struct {
|
||
|
void *data;
|
||
|
void *vtable;
|
||
|
} TraitObject;
|
||
|
|
||
|
void *root(const void *ptr, TraitObject t);
|