mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
8 months ago
|
pub mod aya_ebpf_cty
|
||
|
pub type aya_ebpf_cty::c_char = aya_ebpf_cty::c_schar
|
||
|
pub type aya_ebpf_cty::c_double = f64
|
||
|
pub type aya_ebpf_cty::c_float = f32
|
||
|
pub type aya_ebpf_cty::c_int = i32
|
||
|
pub type aya_ebpf_cty::c_long = i64
|
||
|
pub type aya_ebpf_cty::c_longlong = i64
|
||
|
pub type aya_ebpf_cty::c_schar = i8
|
||
|
pub type aya_ebpf_cty::c_short = i16
|
||
|
pub type aya_ebpf_cty::c_uchar = u8
|
||
|
pub type aya_ebpf_cty::c_uint = u32
|
||
|
pub type aya_ebpf_cty::c_ulong = u64
|
||
|
pub type aya_ebpf_cty::c_ulonglong = u64
|
||
|
pub type aya_ebpf_cty::c_ushort = u16
|
||
|
pub type aya_ebpf_cty::c_void = core::ffi::c_void
|
||
|
pub type aya_ebpf_cty::int16_t = i16
|
||
|
pub type aya_ebpf_cty::int32_t = i32
|
||
|
pub type aya_ebpf_cty::int64_t = i64
|
||
|
pub type aya_ebpf_cty::int8_t = i8
|
||
|
pub type aya_ebpf_cty::intmax_t = i64
|
||
|
pub type aya_ebpf_cty::intptr_t = isize
|
||
|
pub type aya_ebpf_cty::ptrdiff_t = isize
|
||
|
pub type aya_ebpf_cty::size_t = usize
|
||
|
pub type aya_ebpf_cty::ssize_t = isize
|
||
|
pub type aya_ebpf_cty::uint16_t = u16
|
||
|
pub type aya_ebpf_cty::uint32_t = u32
|
||
|
pub type aya_ebpf_cty::uint64_t = u64
|
||
|
pub type aya_ebpf_cty::uint8_t = u8
|
||
|
pub type aya_ebpf_cty::uintmax_t = u64
|
||
|
pub type aya_ebpf_cty::uintptr_t = usize
|