mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-10 13:11:12 +00:00
12 lines
187 B
C
12 lines
187 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct {
|
|
uint64_t foo: 8;
|
|
uint64_t bar: 56;
|
|
} HasBitfields;
|
|
|
|
void root(const HasBitfields*);
|