34 lines
413 B
C
34 lines
413 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct {
|
|
const int32_t *something;
|
|
} Foo_Bar;
|
|
|
|
enum Bar_Tag {
|
|
Min,
|
|
Max,
|
|
Other,
|
|
};
|
|
typedef uint8_t Bar_Tag;
|
|
|
|
typedef struct {
|
|
Bar_Tag tag;
|
|
Foo_Bar _0;
|
|
} Min_Body;
|
|
|
|
typedef struct {
|
|
Bar_Tag tag;
|
|
Foo_Bar _0;
|
|
} Max_Body;
|
|
|
|
typedef union {
|
|
Bar_Tag tag;
|
|
Min_Body min;
|
|
Max_Body max;
|
|
} Bar;
|
|
|
|
void root(Bar b);
|