libflac_sys/lib.rs
1//! Raw FFI bindings to the `libFLAC` library.
2//!
3//! Original C API documentation: <https://xiph.org/flac/api/>
4
5#![no_std]
6#![allow(non_camel_case_types)]
7#![allow(non_snake_case)]
8#![allow(non_upper_case_globals)]
9#![allow(clippy::missing_safety_doc)]
10// https://github.com/rust-lang/rust-bindgen/issues/3053
11#![allow(clippy::ptr_offset_with_cast)]
12#![allow(clippy::useless_transmute)]
13
14include!("bindings.rs");
15
16#[allow(clippy::upper_case_acronyms)]
17pub type FILE = libc::FILE;