An open API service indexing awesome lists of open source software.

https://github.com/hamflx/sqlite-spellfix1


https://github.com/hamflx/sqlite-spellfix1

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# spellfix1

```rust
use rusqlite::ffi::sqlite3_auto_extension;
use sqlite_spellfix1::sqlite3_spellfix_init;

fn main() {
unsafe {
sqlite3_auto_extension(Some(std::mem::transmute(
sqlite3_spellfix_init as *const (),
)));
}
}
```