1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! 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)]

include!("bindings.rs");

pub type FILE = libc::FILE;