cbindgen 0.29.2

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

constexpr static const intptr_t SIZE = 4;

struct WithoutAs {
  uint32_t items[SIZE];
};

struct WithAs {
  uint32_t items[SIZE];
};

extern "C" {

void some_fn(WithoutAs a, WithAs b);

}  // extern "C"