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

24 lines
281 B
C

#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
struct A;
typedef struct A A;
struct B;
typedef struct B B;
typedef struct {
B *members;
size_t count;
} List_B;
typedef struct {
A *members;
size_t count;
} List_A;
void bar(List_B b);
void foo(List_A a);