cbindgen 0.29.2

A tool for generating C bindings to Rust code.
Documentation
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>

typedef int16_t Foo_i16;

typedef int32_t Foo_i32;

typedef struct Bar_i32__u32 {
  Foo_i32 f;
  uint32_t p;
} Bar_i32__u32;

typedef int64_t Foo_i64;

typedef Foo_i64 Baz_i64;

typedef struct NeverUsedWithDefault_i32 {
  int32_t field;
} NeverUsedWithDefault_i32;

#ifdef __cplusplus
extern "C" {
#endif // __cplusplus

void foo_root(Foo_i16 f, struct Bar_i32__u32 b, Baz_i64 z);

void with_i32(struct NeverUsedWithDefault_i32 x);

#ifdef __cplusplus
}  // extern "C"
#endif  // __cplusplus