1 // Copyright 2022 The ChromiumOS Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 //! This module implements the bindgen C FFI bindings for use within this crate 6 7 #![allow(missing_docs)] 8 #![allow(clippy::useless_transmute)] 9 #![allow(clippy::too_many_arguments)] 10 #![allow(non_upper_case_globals)] 11 #![allow(non_snake_case)] 12 #![allow(non_camel_case_types)] 13 #![allow(dead_code)] 14 15 include!(concat!(env!("OUT_DIR"), "/bindings.rs")); 16