Files
cbindgen/tests/expectations/union.c
T
2017-11-09 18:04:22 -05:00

19 lines
266 B
C

#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
struct Opaque;
typedef struct Opaque Opaque;
typedef union {
int32_t x;
float y;
} Normal;
typedef union {
int32_t x;
float y;
} NormalWithZST;
void root(Opaque *a, Normal b, NormalWithZST c);