diff options
Diffstat (limited to 'library/std/src/sys/wasi/path.rs')
-rw-r--r-- | library/std/src/sys/wasi/path.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/library/std/src/sys/wasi/path.rs b/library/std/src/sys/wasi/path.rs new file mode 100644 index 00000000000..840a7ae0426 --- /dev/null +++ b/library/std/src/sys/wasi/path.rs @@ -0,0 +1,19 @@ +use crate::ffi::OsStr; +use crate::path::Prefix; + +#[inline] +pub fn is_sep_byte(b: u8) -> bool { + b == b'/' +} + +#[inline] +pub fn is_verbatim_sep(b: u8) -> bool { + b == b'/' +} + +pub fn parse_prefix(_: &OsStr) -> Option<Prefix<'_>> { + None +} + +pub const MAIN_SEP_STR: &str = "/"; +pub const MAIN_SEP: char = '/'; |