(db: *mut GraphLiteDB)
| 381 | /// * Must not be used after calling this function |
| 382 | #[no_mangle] |
| 383 | pub unsafe extern "C" fn graphlite_close(db: *mut GraphLiteDB) { |
| 384 | if !db.is_null() { |
| 385 | unsafe { |
| 386 | drop(Box::from_raw(db)); |
| 387 | } |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | /// Get the version string of GraphLite |
| 392 | /// |