libffi-sys 0.4.4

Raw Rust bindings for libffi
docs.rs failed to build libffi-sys-0.4.4
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: libffi-sys-2.3.0

libffi-sys-rs: Low-level Rust bindings for libffi

Build Status Crates.io License: MIT License: Apache 2.0

The C libffi library provides two main facilities: assembling calls to functions dynamically, and creating closures that can be called as ordinary C functions. This is an undocumented wrapper, generated by bindgen, intended as the basis for higher-level bindings, but you can see the C libffi documentation.

See the libffi crate for a higher-level API.

Usage

It’s on crates.io, so you can add

[dependencies]
libffi-sys = "0.4.4"

to your Cargo.toml and

extern crate libffi_sys;

to your crate root.