mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 12:36:35 +03:00
core: Add ctypes::c_char
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
which are not obviously correct for all potential platforms.
|
||||
*/
|
||||
|
||||
export c_int, c_uint, long, longlong, unsigned, ulong, ulonglong;
|
||||
export c_char, c_int, c_uint, long, longlong, unsigned, ulong, ulonglong;
|
||||
export intptr_t, uintptr_t;
|
||||
export uint32_t;
|
||||
export void::{};
|
||||
@@ -16,6 +16,9 @@
|
||||
|
||||
// PORT adapt to architecture
|
||||
|
||||
#[doc = "A signed integer with the same size as a C `char`."]
|
||||
type c_char = i8;
|
||||
|
||||
#[doc(
|
||||
brief = "A signed integer with the same size as a C `int`."
|
||||
)]
|
||||
|
||||
Reference in New Issue
Block a user