Crate ffi

Source
Expand description

Foreign function interface (FFI) types.

This crate provides mapping from C primitive types to Rust ones.

The Rust core crate provides core::ffi, which maps integer types to the platform default C ABI. The kernel does not use core::ffi, so it can customise the mapping that deviates from the platform default.

Enums§

c_void
Equivalent to C’s void type when used as a pointer.

Type Aliases§

c_char
c_int
c_long
c_longlong
c_schar
c_short
c_uchar
c_uint
c_ulong
c_ulonglong
c_ushort