| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2017-11-09 | std: Avoid use of `libc` in portable modules | Alex Crichton | -3/+3 | |
| This commit removes usage of the `libc` crate in "portable" modules like those at the top level and `sys_common`. Instead common types like `*mut u8` or `u32` are used instead of `*mut c_void` or `c_int` as well as switching to platform-specific functions like `sys::strlen` instead of `libc::strlen`. | ||||
| 2017-10-20 | Fix most rendering warnings from switching to CommonMark | steveklabnik | -2/+1 | |
| 2017-10-13 | Rollup merge of #44855 - federicomenaquintero:master, r=steveklabnik | kennytm | -67/+386 | |
| Improved docs for CStr, CString, OsStr, OsString This expands the documentation for those structs and their corresponding traits, per https://github.com/rust-lang/rust/issues/29354 | ||||
| 2017-10-11 | ffi/mod.rs: Use only one space after a period ending a sentence | Federico Mena Quintero | -20/+20 | |
| 2017-10-11 | ffi/mod.rs: Keep the one-sentence summary at the beginning of the module | Federico Mena Quintero | -0/+2 | |
| 2017-10-11 | ffi/c_str.rs: Use only one space after a period ending a sentence | Federico Mena Quintero | -8/+8 | |
| 2017-10-11 | ffi/c_str.rs: Fix method/function confusion | Federico Mena Quintero | -3/+3 | |
| Per https://github.com/rust-lang/rust/pull/44855#discussion_r144049179 | ||||
| 2017-10-11 | ffi/c_str.rs: Make all descriptions have a single-sentence summary at the ↵ | Federico Mena Quintero | -15/+16 | |
| beginning Per https://github.com/rust-lang/rust/pull/44855#discussion_r144048837 and subsequent ones. | ||||
| 2017-10-02 | Fix broken links in documentation | Federico Mena Quintero | -3/+3 | |
| 2017-10-02 | Clarify the ffi module's toplevel docs, per @clarcharr's comments | Federico Mena Quintero | -54/+65 | |
| 2017-10-02 | Remove the implication that CString contains UTF-8 data. | Federico Mena Quintero | -3/+4 | |
| 2017-09-30 | Cast inner type in OsStr::bytes | Nikolai Vazquez | -1/+1 | |
| The innermost type is not [u8] on all platforms but is assumed to have the same memory layout as [u8] since this conversion was done via mem::transmute before. | ||||
| 2017-09-28 | Remove unused 'mem' import in 'os_str' module | Nikolai Vazquez | -1/+0 | |
| 2017-09-28 | Remove mem::transmute used in OsStr conversions | Nikolai Vazquez | -7/+10 | |
| 2017-09-28 | Fix mutability error in CString::from_raw | Nikolai Vazquez | -1/+1 | |
| 2017-09-28 | Remove mem::transmute used in CStr conversions | Nikolai Vazquez | -7/+8 | |
| 2017-09-26 | os_str: Fix too-long lines | Federico Mena Quintero | -4/+4 | |
| 2017-09-25 | Overhaul the documentation for OsString / OsStr | Federico Mena Quintero | -5/+91 | |
| 2017-09-25 | Module overview for std::os::windows:ffi | Federico Mena Quintero | -1/+1 | |
| 2017-09-25 | Point from the error structs back to the method that created them, like in ↵ | Federico Mena Quintero | -5/+24 | |
| iterators | ||||
| 2017-09-25 | Overhaul the ffi::CStr documentation. | Federico Mena Quintero | -30/+46 | |
| 2017-09-25 | Overhaul the ffi::CString docs | Federico Mena Quintero | -31/+115 | |
| Explain the struct's reason for being, and its most common usage patterns. Add a bunch of links. Clarify the method docs a bit. Part of https://github.com/rust-lang/rust/issues/29354 | ||||
| 2017-09-25 | Expand the introduction to the ffi module. | Federico Mena Quintero | -1/+100 | |
| We describe the representation of C strings, and the purpose of OsString/OsStr. Part of https://github.com/rust-lang/rust/issues/29354 | ||||
| 2017-09-10 | Use rvalue promotion to 'static instead of static items. | Eduard-Mihai Burtescu | -1/+1 | |
| 2017-08-15 | Fix typos & us spellings | Fourchaux | -2/+2 | |
| 2017-07-25 | std: Stabilize the `str_{mut,box}_extras` feature | Alex Crichton | -8/+0 | |
| Stabilizes * `<&mut str>::as_bytes_mut` * `<Box<str>>::into_boxed_bytes` * `std::str::from_boxed_utf8_unchecked` * `std::str::from_utf8_mut` * `std::str::from_utf8_unchecked_mut` Closes #41119 | ||||
| 2017-07-25 | std: Stabilize CString/OsString/PathBuf extra methods | Alex Crichton | -5/+5 | |
| Stabilizes: * `CString::as_c_str` * `CString::into_boxed_c_str` * `CStr::into_c_string` * `OsString::into_boxed_os_str` * `OsStr::into_os_string` * `PathBuf::into_boxed_path` * `PathBuf::into_path_buf` Closes #40380 | ||||
| 2017-07-04 | Rollup merge of #42227 - ollie27:into_to_from, r=aturon | Mark Simulacrum | -8/+8 | |
| Convert Intos to Froms. This is a resubmission of #42129 without `impl<T> From<Vec<T>> for Box<[T]>`. | ||||
| 2017-06-28 | Auto merge of #42745 - sfackler:1.19-stabilization, r=alexcrichton | bors | -3/+1 | |
| 1.19 stabilization r? @alexcrichton | ||||
| 2017-06-25 | Reword OsStr docs to clarify that utf8 may contain nulls | Casey Rodarmor | -1/+1 | |
| 2017-06-24 | Stabilize OsString::shrink_to_fit | Steven Fackler | -3/+1 | |
| Closes #40421 | ||||
| 2017-06-21 | Update version numbers for From impls | Oliver Middleton | -2/+2 | |
| 2017-06-21 | Convert Intos to Froms. | Clar Charr | -6/+6 | |
| 2017-06-20 | Add doc example for `CString::from_raw`. | Corey Farwell | -0/+21 | |
| 2017-06-20 | Add doc example for `FromBytesWithNulError`. | Corey Farwell | -0/+8 | |
| 2017-06-20 | Add doc example for `NulError`. | Corey Farwell | -0/+8 | |
| 2017-06-20 | Add doc example for `CStr::to_str`. | Corey Farwell | -0/+9 | |
| 2017-06-20 | Add doc example for `CString::as_c_str`. | Corey Farwell | -0/+12 | |
| 2017-06-20 | Add doc example for `Box<CStr>::into_c_string`. | Corey Farwell | -0/+12 | |
| 2017-06-20 | Add doc example for `CString::into_boxed_c_str`. | Corey Farwell | -0/+12 | |
| 2017-06-20 | Add doc example for `CStr::to_string_lossy`. | Corey Farwell | -0/+25 | |
| 2017-06-20 | Add error scenario doc examples for `CStr::from_bytes_with_nul`. | Corey Farwell | -0/+18 | |
| 2017-06-20 | Add doc example for `CStr::to_bytes_with_nul`. | Corey Farwell | -0/+9 | |
| 2017-06-20 | Add doc example for `CStr::to_bytes`. | Corey Farwell | -0/+9 | |
| 2017-06-20 | Mark smaller CStr and CString functions as #[inline] | Alexander Bulaev | -0/+15 | |
| 2017-06-15 | Avoid allocations in Debug for os_str | Stepan Koltsov | -6/+12 | |
| Fixes #38879 | ||||
| 2017-06-05 | Add doc example for `CString::as_bytes`. | Corey Farwell | -0/+10 | |
| 2017-06-05 | Add doc example for `CString::as_bytes_with_nul`. | Corey Farwell | -0/+10 | |
| 2017-06-05 | Add doc example for `CString::into_bytes_with_nul`. | Corey Farwell | -0/+10 | |
| 2017-06-05 | Add doc example for `CString::into_bytes`. | Corey Farwell | -0/+10 | |
