nbindgen 0.0.1

A tool for generating Nim bindings to Rust code (based on cbindgen).
Documentation
#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <new>

struct A;

struct B;

template<typename T>
struct List {
  T *members;
  uintptr_t count;
};

extern "C" {

void bar(List<B> b);

void foo(List<A> a);

} // extern "C"