1
2
3
4
5
6
7
8
9
10
11
//! 特定于 WASI 的 [`std::ffi`] 模块中原语的扩展
//!
//! [`std::ffi`]: crate::ffi

#![stable(feature = "rust1", since = "1.0.0")]

#[path = "../unix/ffi/os_str.rs"]
mod os_str;

#[stable(feature = "rust1", since = "1.0.0")]
pub use self::os_str::{OsStrExt, OsStringExt};