Input C/C++ Header

// Insert your (minimal) C/C++ header here.

Bindgen Invocation

bindgen::Builder::default()
    .header("input.h")
    .generate()
    .unwrap()

or

$ bindgen input.h --whatever --flags

Actual Results

Insert panic message and backtrace (set the `RUST_BACKTRACE=1` env var) here.

and/or

// Insert the (incorrect/buggy) generated bindings here

and/or

Insert compilation errors generated when compiling the bindings with rustc here

Expected Results

RUST_LOG=bindgen Output

Insert debug logging when running bindgen with the `RUST_LOG=bindgen` environment
variable set.