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 83b6bb5 commit e5f8e5eCopy full SHA for e5f8e5e
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: a736669fb686d1a44f47d9624a9ed2aa1e072413
+refs/heads/master: ae76a7db5d5747aad7e572911848800e139f127b
trunk/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