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<uintptr_t N>
struct Inner {
  uint8_t bytes[N];
};

template<uintptr_t N>
struct Outer {
  Inner<N> inner;
};

extern "C" {

Outer<1> one();

Outer<2> two();

}  // extern "C"