blob: 3a0cc20cf64fdf71788d6a6393662c0bb27836b2 [file] [log] [blame] [view]
Alex Crichton68fe98b2015-01-13 07:53:42 -08001libc
2====
3
4A Rust library with native bindings to the types and functions commonly found on
5various systems, including libc.
6
7[![Build Status](https://travis-ci.org/rust-lang/libc.svg?branch=master)](https://travis-ci.org/rust-lang/libc)
8
9[Documentation](http://doc.rust-lang.org/libc)
10
11## Usage
12
13Add this to your `Cargo.toml`:
14
15```toml
16[dependencies]
17
18libc = "0.1"
19```
20
21and this to your crate root:
22
23```rust
24extern crate libc;
25```