Merge pull request #1477 from erickt/master
Adding longlong and ulonglong types
This commit is contained in:
commit
d8a0ef1c84
@ -32,6 +32,13 @@ A signed integer with the same size as a C `long`
|
||||
*/
|
||||
type long = int;
|
||||
|
||||
/*
|
||||
Type: longlong
|
||||
|
||||
A signed integer with the same size as a C `long long`
|
||||
*/
|
||||
type longlong = i64;
|
||||
|
||||
/*
|
||||
Type: unsigned
|
||||
|
||||
@ -46,6 +53,13 @@ An unsigned integer with the same size as a C `unsigned long`
|
||||
*/
|
||||
type ulong = uint;
|
||||
|
||||
/*
|
||||
Type: ulonglong
|
||||
|
||||
An unsigned integer with the same size as a C `unsigned long long`
|
||||
*/
|
||||
type ulonglong = u64;
|
||||
|
||||
/*
|
||||
Type: intptr_t
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user