(
db: *mut sqlite3_stmt,
i: i32,
p: *mut c_void,
t: *const c_char,
)
| 100 | |
| 101 | #[cfg(feature = "static")] |
| 102 | pub unsafe fn sqlite3ext_bind_pointer( |
| 103 | db: *mut sqlite3_stmt, |
| 104 | i: i32, |
| 105 | p: *mut c_void, |
| 106 | t: *const c_char, |
| 107 | ) -> i32 { |
| 108 | libsqlite3_sys::sqlite3_bind_pointer(db, i, p, t, None) |
| 109 | } |
| 110 | #[cfg(not(feature = "static"))] |
| 111 | pub unsafe fn sqlite3ext_bind_pointer( |
| 112 | db: *mut sqlite3_stmt, |
nothing calls this directly
no outgoing calls
no test coverage detected