diff options
| author | Alex Burka <durka42+github@gmail.com> | 2016-06-13 18:00:07 -0400 |
|---|---|---|
| committer | Alex Burka <aburka@seas.upenn.edu> | 2016-07-27 13:58:51 -0400 |
| commit | 1cceca8dfdda4a8bf3daa6a8c23adf7f23acd81a (patch) | |
| tree | f4820fbec06c2715043e9eeea8da333a6181d7be | |
| parent | 0016af5f13702feb92f6323417fb9fe495e964d0 (diff) | |
| download | rust-1cceca8dfdda4a8bf3daa6a8c23adf7f23acd81a.tar.gz rust-1cceca8dfdda4a8bf3daa6a8c23adf7f23acd81a.zip | |
foreign function interface interface
| -rw-r--r-- | src/doc/book/ffi.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/ffi.md b/src/doc/book/ffi.md index 07b8d8e0da8..4a55db38d38 100644 --- a/src/doc/book/ffi.md +++ b/src/doc/book/ffi.md @@ -593,7 +593,7 @@ to represent a nullable function pointer using the C ABI (corresponding to the C Here is a contrived example. Let's say some C library has a facility for registering a callback, which gets called in certain situations. The callback is passed a function pointer and an integer and it is supposed to run the function with the integer as a parameter. So -we have function pointers flying across the FFI interface in both directions. +we have function pointers flying across the FFI boundary in both directions. ```rust use std::os::raw::c_int; |
