nbindgen 0.0.1

A tool for generating Nim bindings to Rust code (based on cbindgen).
Documentation
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>

enum Foo_Tag {
  A,
};

struct A_Body {
  float _0[20];
};

struct Foo {
  enum Foo_Tag tag;
  union {
    struct A_Body a;
  };
};

void root(struct Foo a);