blob: acd8204283611c5d60b2fbc54617fd6c87eead38 [file] [log] [blame]
#if 0
''' '
#endif
#if defined(CBINDGEN_STYLE_TYPE)
/* ANONYMOUS STRUCTS DO NOT SUPPORT FORWARD DECLARATIONS!
#endif
#if 0
' '''
#endif
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
struct StructInfo {
const struct TypeInfo *const *fields;
uintptr_t num_fields;
};
enum TypeData_Tag {
Primitive,
Struct,
};
struct TypeData {
enum TypeData_Tag tag;
union {
struct {
struct StructInfo struct_;
};
};
};
struct TypeInfo {
struct TypeData data;
};
void root(struct TypeInfo x);
#if 0
''' '
#endif
#if defined(CBINDGEN_STYLE_TYPE)
*/
#endif
#if 0
' '''
#endif