16 lines
199 B
C
16 lines
199 B
C
|
#include <stdint.h>
|
||
|
|
||
|
typedef uint64_t Option_Foo;
|
||
|
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
typedef struct Bar {
|
||
|
Option_Foo foo;
|
||
|
} Bar;
|
||
|
|
||
|
void root(Bar f);
|