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>

typedef enum Foo_Tag {
  A,
} Foo_Tag;

typedef struct A_Body {
  float _0[20];
} A_Body;

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

void root(Foo a);