mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-04 09:53:04 +03:00
0d3bee8be0
Move `std::memchr` to `sys_common` `std::memchr` is a thin abstraction over the different `memchr` implementations in `sys`, along with documentation and tests. The module is only used internally by `std`, nothing is exported externally. Code like this is exactly what the `sys_common` module is for, so this PR moves it there.