libxml/
bindings.rs

1// Issues coming from bindgen
2#![allow(non_upper_case_globals)]
3#![allow(non_camel_case_types)]
4#![allow(non_snake_case)]
5#![allow(dead_code)]
6#![allow(improper_ctypes)]
7#![allow(missing_docs)]
8
9/*
10 * helper var until we figure out well-formedness checks
11 */
12
13pub static mut HACKY_WELL_FORMED: bool = false;
14
15include!(concat!(env!("OUT_DIR"), "/bindings.rs"));