summaryrefslogtreecommitdiff
path: root/README.md
blob: 3a0cc20cf64fdf71788d6a6393662c0bb27836b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
libc
====

A Rust library with native bindings to the types and functions commonly found on
various systems, including libc.

[![Build Status](https://travis-ci.org/rust-lang/libc.svg?branch=master)](https://travis-ci.org/rust-lang/libc)

[Documentation](http://doc.rust-lang.org/libc)

## Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]

libc = "0.1"
```

and this to your crate root:

```rust
extern crate libc;
```