bliss_audio_aubio_sys/
lib.rs

1/*!
2# Unsafe _aubio_ library bindings
3
4This crate provides generated unsafe Rust bindings to [_aubio_](//github.com/aubio/aubio) C library.
5
6Probably this isn't that you really need. See [safe bindings](https://crates.io/crates/aubio-rs).
7 */
8
9#![allow(
10    non_upper_case_globals,
11    non_camel_case_types,
12    non_snake_case,
13    clippy::redundant_static_lifetimes // TODO: Remove later when bindgen resolve this issue
14)]
15#![cfg_attr(test, allow(deref_nullptr))]
16
17#[cfg(feature = "bindgen")]
18include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
19
20#[cfg(not(feature = "bindgen"))]
21include!(concat!("bindings/", env!("AUBIO_BINDINGS")));