std/os/wasi/
ffi.rs

1//! WASI-specific extensions to primitives in the [`std::ffi`] module
2//!
3//! [`std::ffi`]: crate::ffi
4
5#![stable(feature = "rust1", since = "1.0.0")]
6
7#[path = "../unix/ffi/os_str.rs"]
8mod os_str;
9
10#[stable(feature = "rust1", since = "1.0.0")]
11pub use self::os_str::{OsStrExt, OsStringExt};