chore: fix clippy warnings

This commit is contained in:
Nils Koch
2025-06-13 21:20:26 +01:00
parent 1a0d4f500f
commit 2827b86917
95 changed files with 902 additions and 992 deletions

View File

@@ -7,6 +7,13 @@ extern "C" {
}
#[no_mangle]
/// Initialize the Limbo SQLite Test Extension.
///
/// # Safety
///
/// This function is unsafe because it interacts with raw pointers and FFI.
/// Caller must ensure that `db`, `err_msg`, and `api` are valid pointers,
/// and that the SQLite database handle is properly initialized.
pub unsafe extern "C" fn sqlite3_limbosqlitetestext_init(
db: *mut std::ffi::c_void,
err_msg: *mut *mut i8,