cbindgen 0.29.2

A tool for generating C bindings to Rust code.
Documentation
#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;
  struct Foo_Bar subexpressions;
} Bar;

#ifdef __cplusplus
extern "C" {
#endif // __cplusplus

void root(struct Bar b);

#ifdef __cplusplus
}  // extern "C"
#endif  // __cplusplus