MCPcopy Create free account
hub / github.com/asg017/sqlite-loadable-rs / sqlite3ext_bind_pointer

Function sqlite3ext_bind_pointer

src/ext.rs:102–109  ·  view source on GitHub ↗
(
    db: *mut sqlite3_stmt,
    i: i32,
    p: *mut c_void,
    t: *const c_char,
)

Source from the content-addressed store, hash-verified

100
101#[cfg(feature = "static")]
102pub 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"))]
111pub unsafe fn sqlite3ext_bind_pointer(
112 db: *mut sqlite3_stmt,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected