Skip to content

Commit 2cab068

Browse files
author
Clar Charr
committed
Reworded to avoid fuzziness, mention ! in c_void docs.
1 parent 853fa58 commit 2cab068

14 files changed

+23
-13
lines changed

src/libstd/os/raw/char.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Equivalent to C's `char` type.
22

3-
[C's `char` type] is completely unlike [Rust's `char` type]; while Rust's type represents a unicode scalar value, C's `char` type is just an ordinary integer. In practice, this type will always be either [`i8`] or [`u8`], but you're technically not supposed to rely on this behaviour, as the standard only defines a char as being at least eight bits long.
3+
[C's `char` type] is completely unlike [Rust's `char` type]; while Rust's type represents a unicode scalar value, C's `char` type is just an ordinary integer. This type will always be either [`i8`] or [`u8`], as the type is defined as being one byte long.
44

55
C chars are most commonly used to make C strings. Unlike Rust, where the length of a string is included alongside the string, C strings mark the end of a string with the character `'\0'`. See [`CStr`] for more information.
66

src/libstd/os/raw/double.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Equivalent to C's `double` type.
22

3-
This type will almost always be [`f64`], however, the standard technically only guarantees that it be a floating-point number with at least the precision of a [`float`].
3+
This type will almost always be [`f64`], which is guaranteed to be an [IEEE-754 double-precision float] in Rust. That said, the standard technically only guarantees that it be a floating-point number with at least the precision of a [`float`], and it may be `f32` or something entirely different from the IEEE-754 standard.
44

5+
[IEEE-754 double-precision float]: https://en.wikipedia.org/wiki/IEEE_754
56
[`float`]: type.c_float.html
67
[`f64`]: ../../primitive.f64.html

src/libstd/os/raw/float.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Equivalent to C's `float` type.
22

3-
This type will almost always be [`f32`], however, the standard technically only guarantees that it be a floating-point number.
3+
This type will almost always be [`f32`], which is guaranteed to be an [IEEE-754 single-precision float] in Rust. That said, the standard technically only guarantees that it be a floating-point number, and it may have less precision than `f32` or not follow the IEEE-754 standard at all.
44

5+
[IEEE-754 single-precision float]: https://en.wikipedia.org/wiki/IEEE_754
56
[`f32`]: ../../primitive.f32.html

src/libstd/os/raw/int.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Equivalent to C's `signed int` (`int`) type.
22

3-
This type will almost always be [`i32`], however, the standard technically only requires that it be at least the size of a [`short`].
3+
This type will almost always be [`i32`], but may differ on some esoteric systems. The C standard technically only requires that this type be a signed integer that is at least the size of a [`short`]; some systems define it as an [`i16`], for example.
44

55
[`short`]: type.c_short.html
66
[`i32`]: ../../primitive.i32.html
7+
[`i16`]: ../../primitive.i16.html

src/libstd/os/raw/long.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Equivalent to C's `signed long` (`long`) type.
22

3-
This type will usually be [`i64`], but is sometimes [`i32`]. Technically, the standard only requires that it be at least 32 bits, or at least the size of an [`int`].
3+
This type will always be [`i32`] or [`i64`]. Most notably, many Linux-based systems assume an `i64`, but Windows assumes `i32`. The C standard technically only requires that this type be a signed integer that is at least 32 bits and at least the size of an [`int`], although in practice, no system would have a `long` that is neither an `i32` nor `i64`.
44

55
[`int`]: type.c_int.html
66
[`i32`]: ../../primitive.i32.html

src/libstd/os/raw/longlong.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Equivalent to C's `signed long long` (`long long`) type.
22

3-
This type will almost always be [`i64`], however, the standard technically only requires that it be at least 64 bits, or at least the size of an [`long`].
3+
This type will almost always be [`i64`], but may differ on some systems. The C standard technically only requires that this type be a signed integer that is at least 64 bits and at least the size of a [`long`], although in practice, no system would have a `long long` that is not an `i64`, as most systems do not have a standardised [`i128`] type.
44

55
[`long`]: type.c_int.html
66
[`i64`]: ../../primitive.i64.html
7+
[`i128`]: ../../primitive.i128.html

src/libstd/os/raw/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ use fmt;
8383
/// and `*mut c_void` is equivalent to C's `void*`. That said, this is
8484
/// *not* the same as C's `void` return type, which is Rust's `()` type.
8585
///
86+
/// Ideally, this type would be equivalent to [`!`], but currently it may
87+
/// be more ideal to use `c_void` for FFI purposes.
88+
///
89+
/// [`!`]: ../../primitive.never.html
8690
/// [pointer]: ../../primitive.pointer.html
8791
// NB: For LLVM to recognize the void pointer type and by extension
8892
// functions like malloc(), we need to have it represented as i8* in

src/libstd/os/raw/schar.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Equivalent to C's `signed char` type.
22

3-
This type will almost always be [`i8`], but its size is technically equal to the size of a C [`char`], which isn't very clear-cut.
3+
This type will always be [`i8`], but is included for completeness. It is defined as being a signed integer the same size as a C [`char`].
44

55
[`char`]: type.c_char.html
66
[`i8`]: ../../primitive.i8.html

src/libstd/os/raw/short.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Equivalent to C's `signed short` (`short`) type.
22

3-
This type will almost always be [`i16`], however, the standard technically only requires that it be at least 16 bits, or at least the size of a C [`char`].
3+
This type will almost always be [`i16`], but may differ on some esoteric systems. The C standard technically only requires that this type be a signed integer with at least 16 bits; some systems may define it as `i32`, for example.
44

55
[`char`]: type.c_char.html
66
[`i16`]: ../../primitive.i16.html

src/libstd/os/raw/uchar.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Equivalent to C's `unsigned char` type.
22

3-
This type will almost always be [`u8`], but its size is technically equal to the size of a C [`char`], which isn't very clear-cut.
3+
This type will always be [`u8`], but is included for completeness. It is defined as being an unsigned integer the same size as a C [`char`].
44

55
[`char`]: type.c_char.html
66
[`u8`]: ../../primitive.u8.html

src/libstd/os/raw/uint.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Equivalent to C's `unsigned int` type.
22

3-
This type will almost always be [`u32`], however, the standard technically on requires that it be the same size as an [`int`], which isn't very clear-cut.
3+
This type will almost always be [`u16`], but may differ on some esoteric systems. The C standard technically only requires that this type be an unsigned integer with the same size as an [`int`]; some systems define it as a [`u16`], for example.
44

55
[`int`]: type.c_int.html
66
[`u32`]: ../../primitive.u32.html
7+
[`u16`]: ../../primitive.u16.html

src/libstd/os/raw/ulong.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Equivalent to C's `unsigned long` type.
22

3-
This type will usually be [`u64`], but is sometimes [`u32`]. Technically, the standard only requires that it be the same size as a [`long`], which isn't very clear-cut.
3+
This type will always be [`u32`] or [`u64`]. Most notably, many Linux-based systems assume an `u64`, but Windows assumes `u32`. The C standard technically only requires that this type be an unsigned integer with the size of a [`long`], although in practice, no system would have a `ulong` that is neither a `u32` nor `u64`.
44

55
[`long`]: type.c_long.html
66
[`u32`]: ../../primitive.u32.html

src/libstd/os/raw/ulonglong.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Equivalent to C's `unsigned long long` type.
22

3-
This type will almost always be [`u64`], however, the standard technically only requires that it be the same size as a [`long long`], which isn't very clear-cut.
3+
This type will almost always be [`u64`], but may differ on some systems. The C standard technically only requires that this type be an unsigned integer with the size of a [`long long`], although in practice, no system would have a `long long` that is not a `u64`, as most systems do not have a standardised [`u128`] type.
44

55
[`long long`]: type.c_longlong.html
66
[`u64`]: ../../primitive.u64.html
7+
[`u128`]: ../../primitive.u128.html

src/libstd/os/raw/ushort.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Equivalent to C's `unsigned short` type.
22

3-
This type will almost always be [`u16`], however, the standard technically only requires that it be the same size as a [`short`], which isn't very clear-cut.
3+
This type will almost always be [`u16`], but may differ on some esoteric systems. The C standard technically only requires that this type be an unsigned integer with the same size as a [`short`].
44

55
[`short`]: type.c_short.html
66
[`u16`]: ../../primitive.u16.html

0 commit comments

Comments
 (0)