(s: *mut c_char)
| 363 | /// * Must not be called on strings not allocated by GraphLite |
| 364 | #[no_mangle] |
| 365 | pub unsafe extern "C" fn graphlite_free_string(s: *mut c_char) { |
| 366 | if !s.is_null() { |
| 367 | unsafe { |
| 368 | drop(CString::from_raw(s)); |
| 369 | } |
| 370 | } |
| 371 | } |
| 372 | |
| 373 | /// Close database connection and free resources |
| 374 | /// |