94 lines
1.4 KiB
C
94 lines
1.4 KiB
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef enum {
|
|
Foo1,
|
|
Bar1,
|
|
Baz1,
|
|
} MyCLikeEnum;
|
|
|
|
typedef enum {
|
|
Foo1_Prepended,
|
|
Bar1_Prepended,
|
|
Baz1_Prepended,
|
|
} MyCLikeEnum_Prepended;
|
|
|
|
typedef struct {
|
|
int32_t i;
|
|
#ifdef __cplusplus
|
|
inline void foo();
|
|
#endif
|
|
} MyFancyStruct;
|
|
|
|
typedef enum {
|
|
Foo,
|
|
Bar,
|
|
Baz,
|
|
} MyFancyEnum_Tag;
|
|
|
|
typedef struct {
|
|
MyFancyEnum_Tag tag;
|
|
union {
|
|
struct {
|
|
int32_t bar;
|
|
};
|
|
struct {
|
|
int32_t baz;
|
|
};
|
|
};
|
|
#ifdef __cplusplus
|
|
inline void wohoo();
|
|
#endif
|
|
} MyFancyEnum;
|
|
|
|
typedef union {
|
|
float f;
|
|
uint32_t u;
|
|
int32_t extra_member;
|
|
} MyUnion;
|
|
|
|
typedef struct {
|
|
#ifdef __cplusplus
|
|
inline void prepended_wohoo();
|
|
#endif
|
|
int32_t i;
|
|
} MyFancyStruct_Prepended;
|
|
|
|
typedef enum {
|
|
Foo_Prepended,
|
|
Bar_Prepended,
|
|
Baz_Prepended,
|
|
} MyFancyEnum_Prepended_Tag;
|
|
|
|
typedef struct {
|
|
#ifdef __cplusplus
|
|
inline void wohoo();
|
|
#endif
|
|
MyFancyEnum_Prepended_Tag tag;
|
|
union {
|
|
struct {
|
|
int32_t bar_prepended;
|
|
};
|
|
struct {
|
|
int32_t baz_prepended;
|
|
};
|
|
};
|
|
} MyFancyEnum_Prepended;
|
|
|
|
typedef union {
|
|
int32_t extra_member;
|
|
float f;
|
|
uint32_t u;
|
|
} MyUnion_Prepended;
|
|
|
|
void root(MyFancyStruct s,
|
|
MyFancyEnum e,
|
|
MyCLikeEnum c,
|
|
MyUnion u,
|
|
MyFancyStruct_Prepended sp,
|
|
MyFancyEnum_Prepended ep,
|
|
MyCLikeEnum_Prepended cp,
|
|
MyUnion_Prepended up);
|