sqlite3ext-sys 0.0.1

FFI bindings to sqlite3ext.h - you probably want libsqlite3-sys, however
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn sanity() {
        assert_eq!(SQLITE_VERSION_NUMBER, 3039004);
        assert_eq!(unsafe { sqlite3_libversion_number() }, 3039004);
    }
}