cbindgen 0.29.2

A tool for generating C bindings to Rust code.
Documentation
#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <ostream>
#include <new>

template<typename T>
struct Foo {
  const int32_t *something;
};

struct Bar {
  int32_t something;
  Foo<Bar> subexpressions;
};

extern "C" {

void root(Bar b);

}  // extern "C"