Files
cbindgen/tests/expectations/both/struct_self.c
T
2020-01-16 21:07:34 +01:00

16 lines
241 B
C

#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
typedef struct Foo_Bar {
const int32_t *something;
} Foo_Bar;
typedef struct Bar {
int32_t something;
Foo_Bar subexpressions;
} Bar;
void root(Bar b);