1 //! Switch C type definitions 2 3 pub type intmax_t = i64; 4 pub type uintmax_t = u64; 5 6 pub type size_t = usize; 7 pub type ptrdiff_t = isize; 8 pub type intptr_t = isize; 9 pub type uintptr_t = usize; 10 pub type ssize_t = isize; 11 12 pub type off_t = i64; 13 pub type wchar_t = u32; 14 15 pub const INT_MIN: c_int = -2147483648; 16 pub const INT_MAX: c_int = 2147483647; 17