// devela::lang::prog::ffi::c::libc
/// Equivalent to C's `mode_t` type.
///
/// Numeric type used in POSIX interfaces to encode file modes and permission bits.
pub type c_mode_t = u32;
/// Equivalent to C's `off_t` type.
///
/// Signed integer type used by POSIX interfaces to represent file offsets and sizes.
pub type c_off_t = i64;