sqlite3_create_collation_v2

Function sqlite3_create_collation_v2 

Source
pub unsafe extern "C" fn sqlite3_create_collation_v2(
    arg1: *mut sqlite3,
    zName: *const i8,
    eTextRep: i32,
    pArg: *mut c_void,
    xCompare: Option<unsafe extern "C" fn(*mut c_void, i32, *const c_void, i32, *const c_void) -> i32>,
    xDestroy: Option<unsafe extern "C" fn(*mut c_void)>,
) -> i32