diff options
Diffstat (limited to 'std/src/ffi/mod.rs')
| -rw-r--r-- | std/src/ffi/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/std/src/ffi/mod.rs b/std/src/ffi/mod.rs new file mode 100644 index 0000000..d4ed3a7 --- /dev/null +++ b/std/src/ffi/mod.rs @@ -0,0 +1,5 @@ +pub use self::c_str::{CString, CStr}; +pub use self::os_str::{OsString, OsStr}; + +mod c_str; +mod os_str; |