1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-05 18:15:49 +02:00

Fix typo, and this is not specific to glibc.

This commit is contained in:
Andrew Walbran 2023-01-17 17:29:40 +00:00
parent 6e7916c29b
commit facbac4601

View File

@ -1,8 +1,8 @@
# Safe FFI Wrapper
Rust has great support for calling functions through a _foreign function
interface_ (FFI). We will use this to build a safe wrapper the `glibc` functions
you would use from C to read the filenames of a directory.
interface_ (FFI). We will use this to build a safe wrapper for the `libc`
functions you would use from C to read the filenames of a directory.
You will want to consult the manual pages: