pub type String = _string_t;
#[repr(C)]pub struct String { pub size: u32, pub data: [i8; 512], }
size: u32
data: [i8; 512]