(ptr: *mut c_char)
| 42 | } |
| 43 | |
| 44 | pub(crate) unsafe fn drop_c_string(ptr: *mut c_char) { |
| 45 | let _ = CString::from_raw(ptr); |
| 46 | } |
| 47 | |
| 48 | #[cfg(not(target_os = "windows"))] |
| 49 | pub(crate) fn classpath_sep() -> &'static str { |
no outgoing calls
no test coverage detected