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.
2 parents 8387896 + ae76a7d commit d8a0ef1Copy full SHA for d8a0ef1
src/libcore/ctypes.rs
@@ -32,6 +32,13 @@ A signed integer with the same size as a C `long`
32
*/
33
type long = int;
34
35
+/*
36
+Type: longlong
37
+
38
+A signed integer with the same size as a C `long long`
39
+*/
40
+type longlong = i64;
41
42
/*
43
Type: unsigned
44
@@ -46,6 +53,13 @@ An unsigned integer with the same size as a C `unsigned long`
46
53
47
54
type ulong = uint;
48
55
56
57
+Type: ulonglong
58
59
+An unsigned integer with the same size as a C `unsigned long long`
60
61
+type ulonglong = u64;
62
49
63
50
64
Type: intptr_t
51
65
0 commit comments