diff options
| -rw-r--r-- | src/doc/guide-ffi.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/guide-ffi.md b/src/doc/guide-ffi.md index ad80f2b46c8..a7aca924610 100644 --- a/src/doc/guide-ffi.md +++ b/src/doc/guide-ffi.md @@ -2,11 +2,11 @@ # Introduction -This guide will use the [snappy](https://code.google.com/p/snappy/) +This guide will use the [snappy](https://github.com/google/snappy) compression/decompression library as an introduction to writing bindings for foreign code. Rust is currently unable to call directly into a C++ library, but snappy includes a C interface (documented in -[`snappy-c.h`](https://code.google.com/p/snappy/source/browse/trunk/snappy-c.h)). +[`snappy-c.h`](https://github.com/google/snappy/blob/master/snappy-c.h)). The following is a minimal example of calling a foreign function which will compile if snappy is installed: |
