A thin Rust wrapper library around libc errno
interface.
```rust use chatoraerrno::{clearerrno, describeerrno, geterrno, set_errno};
// Clear current errno. clear_errno();
// Get the current value of errno. let errno: i32 = get_errno();
assert_eq!(errno, 0);
// Equivalent to clear_errno()
.
set_errno(0);
// Get string description of an errno. let errstring: String = describeerrno(errno).unwrap();
asserteq!( format!("{} (os error {})", errstring, errno), format!("{}", std::io::Error::fromrawoserror(errno)) ); asserteq!(err_string, "Success"); ```
To use chatora-errno
, add this to your Cargo.toml
:
toml
[dependencies]
chatora-errno = "1.0.1"
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.