We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7a4a7e commit 8022757Copy full SHA for 8022757
src/types.rs
@@ -4,6 +4,9 @@ use core::fmt;
4
pub type c_int = i32;
5
pub type c_uchar = u8;
6
pub type c_uint = u32;
7
+
8
+/// This might not match C's `c_char` exactly.
9
+/// The way we use it makes it fine either way but this type shouldn't be used outside of the library.
10
pub type c_char = i8;
11
12
/// This is an exact copy of https://doc.rust-lang.org/core/ffi/enum.c_void.html
0 commit comments