#![allow(unused, reason = "Includes autogenerated bindings")]
#![allow(non_snake_case, reason = "Includes autogenerated bindings")]
#![allow(non_camel_case_types, reason = "Includes autogenerated bindings")]
include!("bindgen.rs");
unsafe extern "C" {
pub unsafe fn sqlite3_transient() -> sqlite3_destructor_type;
}
#[test]
fn assert_threadsafe() {
let threadsafe = unsafe { sqlite3_threadsafe() };
assert_ne!(threadsafe, 0, "sqlite is not compiled threadsafe?!")
}