summaryrefslogtreecommitdiff
path: root/library/std/src/sys/sgx/path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/sys/sgx/path.rs')
-rw-r--r--library/std/src/sys/sgx/path.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/library/std/src/sys/sgx/path.rs b/library/std/src/sys/sgx/path.rs
new file mode 100644
index 00000000000..06c9df3ff54
--- /dev/null
+++ b/library/std/src/sys/sgx/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: &'static str = "/";
+pub const MAIN_SEP: char = '/';