• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H03-May-2022-250

src/H03-May-2022-79,55271,967

tests/H03-May-2022-63

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D19-Jul-202074 65

.cirrus.ymlH A D13-Apr-20201.3 KiB4441

.gitignoreH A D13-Apr-202027 54

CONTRIBUTING.mdH A D19-Jul-20202.7 KiB6448

Cargo.tomlH A D19-Jul-20201.4 KiB4642

Cargo.toml.orig-cargoH A D19-Jul-20201,018 3732

LICENSE-APACHEH A D13-Apr-202010.6 KiB202169

LICENSE-MITH A D13-Apr-20201.1 KiB2622

README.mdH A D19-Jul-20203.8 KiB10673

build.rsH A D13-Apr-20204.6 KiB145103

rustfmt.tomlH A D13-Apr-202063 33

triagebot.tomlH A D13-Apr-20209 21

README.md

1# libc - Raw FFI bindings to platforms' system libraries
2
3[![Azure Status]][Azure] [![Cirrus CI Status]][Cirrus CI] [![Latest Version]][crates.io] [![Documentation]][docs.rs] ![License]
4
5`libc` provides all of the definitions necessary to easily interoperate with C
6code (or "C-like" code) on each of the platforms that Rust supports. This
7includes type definitions (e.g. `c_int`), constants (e.g. `EINVAL`) as well as
8function headers (e.g. `malloc`).
9
10This crate exports all underlying platform types, functions, and constants under
11the crate root, so all items are accessible as `libc::foo`. The types and values
12of all the exported APIs match the platform that libc is compiled for.
13
14More detailed information about the design of this library can be found in its
15[associated RFC][rfc].
16
17[rfc]: https://github.com/rust-lang/rfcs/blob/master/text/1291-promote-libc.md
18
19## Usage
20
21Add the following to your `Cargo.toml`:
22
23```toml
24[dependencies]
25libc = "0.2"
26```
27
28## Features
29
30* `std`: by default `libc` links to the standard library. Disable this
31  feature remove this dependency and be able to use `libc` in `#![no_std]`
32  crates.
33
34* `extra_traits`: all `struct`s implemented in `libc` are `Copy` and `Clone`.
35  This feature derives `Debug`, `Eq`, `Hash`, and `PartialEq`.
36
37* `const-extern-fn`: Changes some `extern fn`s into `const extern fn`s.
38   This features requires a nightly rustc
39
40* **deprecated**: `use_std` is deprecated, and is equivalent to `std`.
41
42## Rust version support
43
44The minimum supported Rust toolchain version is **Rust 1.13.0** . APIs requiring
45newer Rust features are only available on newer Rust toolchains:
46
47| Feature              | Version |
48|----------------------|---------|
49| `union`              |  1.19.0 |
50| `const mem::size_of` |  1.24.0 |
51| `repr(align)`        |  1.25.0 |
52| `extra_traits`       |  1.25.0 |
53| `core::ffi::c_void`  |  1.30.0 |
54| `repr(packed(N))`    |  1.33.0 |
55
56## Platform support
57
58[Platform-specific documentation (master branch)][docs.master].
59
60See
61[`ci/build.sh`](https://github.com/rust-lang/libc/blob/master/ci/build.sh)
62for the platforms on which `libc` is guaranteed to build for each Rust
63toolchain. The test-matrix at [Azure] and [Cirrus CI] show the
64platforms in which `libc` tests are run.
65
66<div class="platform_docs"></div>
67
68## License
69
70This project is licensed under either of
71
72* [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
73  ([LICENSE-APACHE](https://github.com/rust-lang/libc/blob/master/LICENSE-APACHE))
74
75* [MIT License](https://opensource.org/licenses/MIT)
76  ([LICENSE-MIT](https://github.com/rust-lang/libc/blob/master/LICENSE-MIT))
77
78at your option.
79
80## Contributing
81
82We welcome all people who want to contribute. Please see the [contributing
83instructions] for more information.
84
85[contributing instructions]: https://github.com/rust-lang/libc/blob/master/CONTRIBUTING.md
86
87Contributions in any form (issues, pull requests, etc.) to this project
88must adhere to Rust's [Code of Conduct].
89
90[Code of Conduct]: https://www.rust-lang.org/policies/code-of-conduct
91
92Unless you explicitly state otherwise, any contribution intentionally submitted
93for inclusion in `libc` by you, as defined in the Apache-2.0 license, shall be
94dual licensed as above, without any additional terms or conditions.
95
96[Azure Status]: https://dev.azure.com/rust-lang2/libc/_apis/build/status/rust-lang.libc%20(1)?branchName=master
97[Azure]: https://dev.azure.com/rust-lang2/libc/_build/latest?definitionId=1&branchName=master
98[Cirrus CI]: https://cirrus-ci.com/github/rust-lang/libc
99[Cirrus CI Status]: https://api.cirrus-ci.com/github/rust-lang/libc.svg
100[crates.io]: https://crates.io/crates/libc
101[Latest Version]: https://img.shields.io/crates/v/libc.svg
102[Documentation]: https://docs.rs/libc/badge.svg
103[docs.rs]: https://docs.rs/libc
104[License]: https://img.shields.io/crates/l/libc.svg
105[docs.master]: https://rust-lang.github.io/libc/#platform-specific-documentation
106