1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Raw FFI bindings to the `libFLAC` library.
//!
//! Original C API documentation: <https://xiph.org/flac/api/>

#![no_std]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(clippy::useless_transmute)]

include!("bindings.rs");

#[allow(clippy::upper_case_acronyms)]
pub type FILE = libc::FILE;