https://github.com/hamflx/sqlite-spellfix1
https://github.com/hamflx/sqlite-spellfix1
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hamflx/sqlite-spellfix1
- Owner: hamflx
- Created: 2024-12-07T11:15:31.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-07T11:35:14.000Z (over 1 year ago)
- Last Synced: 2024-12-07T12:22:56.753Z (over 1 year ago)
- Language: C
- Size: 192 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 (),
)));
}
}
```