We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ab792ab + 1c44722 commit 0e8538dCopy full SHA for 0e8538d
src/doc/trpl/ffi.md
@@ -496,9 +496,11 @@ strings are not terminated with `\0`. If you need a NUL-terminated string for
496
interoperability with C, you should use the `CString` type in the `std::ffi`
497
module.
498
499
-The standard library includes type aliases and function definitions for the C
500
-standard library in the `libc` module, and Rust links against `libc` and `libm`
501
-by default.
+The [`libc` crate on crates.io][libc] includes type aliases and function
+definitions for the C standard library in the `libc` module, and Rust links
+against `libc` and `libm` by default.
502
+
503
+[libc]: https://crates.io/crates/libc
504
505
# The "nullable pointer optimization"
506
0 commit comments