mextk-libc 0.1.0

A subset of libc needed for building mods for Super Smash Brothers Melee
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![no_std]
#![allow(non_camel_case_types)]

pub type c_int = i32;
pub type c_uint = u32;
pub type c_char = i8;
pub type c_schar = i8;
pub type c_uchar = u8;
pub type c_short = i16;
pub type c_ushort = u16;
pub type c_long = i32;
pub type c_ulong = u32;
pub type c_longlong = i64;
pub type c_ulonglong = u64;
pub use core::ffi::c_void;