| Alex Crichton | 68fe98b | 2015-01-13 07:53:42 -0800 | [diff] [blame^] | 1 | libc |
| 2 | ==== |
| 3 | |
| 4 | A Rust library with native bindings to the types and functions commonly found on |
| 5 | various systems, including libc. |
| 6 | |
| 7 | [](https://travis-ci.org/rust-lang/libc) |
| 8 | |
| 9 | [Documentation](http://doc.rust-lang.org/libc) |
| 10 | |
| 11 | ## Usage |
| 12 | |
| 13 | Add this to your `Cargo.toml`: |
| 14 | |
| 15 | ```toml |
| 16 | [dependencies] |
| 17 | |
| 18 | libc = "0.1" |
| 19 | ``` |
| 20 | |
| 21 | and this to your crate root: |
| 22 | |
| 23 | ```rust |
| 24 | extern crate libc; |
| 25 | ``` |