└── README.md /README.md: -------------------------------------------------------------------------------- 1 | rlibc 2 | ===== 3 | 4 | **DEPRECATED**: This crate used to provide a Rust implementation of some `libc` 5 | functions such as `memcpy` / `memmove` / `memset`, required when developing 6 | freestanding applications. 7 | 8 | The [compiler-builtins] crate now provides optimized versions of these functions 9 | when enabling the optional `mem` feature. It also provides a lot of other useful 10 | functions required by bare metal applications. It should be used instead of this one. 11 | 12 | The old version of this crate is still browsable by looking in [Git's history][old]. 13 | No further development will happen here. 14 | 15 | [compiler-builtins]: https://github.com/rust-lang-nursery/compiler-builtins 16 | [old]: https://github.com/alexcrichton/rlibc/commit/defb486e765846417a8e73329e8c5196f1dca49a 17 | --------------------------------------------------------------------------------