(e: i32)
| 2022 | |
| 2023 | #[pyfunction] |
| 2024 | fn strerror(e: i32) -> String { |
| 2025 | unsafe { core::ffi::CStr::from_ptr(libc::strerror(e)) } |
| 2026 | .to_string_lossy() |
| 2027 | .into_owned() |
| 2028 | } |
| 2029 | |
| 2030 | #[pyfunction] |
| 2031 | pub fn ftruncate(fd: crt_fd::Borrowed<'_>, length: crt_fd::Offset) -> io::Result<()> { |
no test coverage detected