1#![allow(
2 non_camel_case_types,
3 non_upper_case_globals,
4 clippy::approx_constant,
5 clippy::redundant_static_lifetimes,
6 non_snake_case
7)]
8#![no_std]
9
10mod c_api {
11 include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
12}
13
14pub use c_api::*;