bindgen 0.18.0

A binding generator for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
int test_var;
int test_fn();
struct test_struct {
    int i;
};
enum test_enum {
    TEST_A,
    TEST_B,
};
union test_union {
    struct test_struct s;
    enum test_enum e;
};

union test_union test_fn2();
struct test_struct test_fn3();
enum test_enum test_fn4();