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

Function sqlite3ext_value_pointer

src/ext.rs:258–260  ·  view source on GitHub ↗
(arg1: *mut sqlite3_value, p: *mut c_char)

Source from the content-addressed store, hash-verified

256
257#[cfg(feature = "static")]
258pub unsafe fn sqlite3ext_value_pointer(arg1: *mut sqlite3_value, p: *mut c_char) -> *mut c_void {
259 libsqlite3_sys::sqlite3_value_pointer(arg1, p)
260}
261#[cfg(not(feature = "static"))]
262pub unsafe fn sqlite3ext_value_pointer(arg1: *mut sqlite3_value, p: *mut c_char) -> *mut c_void {
263 ((*SQLITE3_API).value_pointer.expect(EXPECT_MESSAGE))(arg1, p)

Callers 1

value_pointerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected