sqlite3ext_sys/
lib.rs

1#![allow(non_upper_case_globals)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4
5include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
6
7#[cfg(test)]
8mod tests {
9    use super::*;
10
11    #[test]
12    fn sanity() {
13        assert_eq!(SQLITE_VERSION_NUMBER, 3039004);
14        assert_eq!(unsafe { sqlite3_libversion_number() }, 3039004);
15    }
16}