1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
pub type int_fast8_t = i8;
pub type int_fast16_t = i64;
pub type int_fast32_t = i64;
pub type int_fast64_t = i64;
pub type int_least8_t = i8;
pub type int_least16_t = i16;
pub type int_least32_t = i32;
pub type int_least64_t = i64;
pub type intmax_t = i64;
pub type intptr_t = i64;
pub type uint_fast8_t = u8;
pub type uint_fast16_t = u64;
pub type uint_fast32_t = u64;
pub type uint_fast64_t = u64;
pub type uint_least8_t = u8;
pub type uint_least16_t = u16;
pub type uint_least32_t = u32;
pub type uint_least64_t = u64;
pub type uintmax_t = u64;
pub type uintptr_t = u64;
pub const INT8_MIN: int8_t = -128;
pub const INT16_MIN: int16_t = -32768;
pub const INT32_MIN: int32_t = -2147483648;
pub const INT64_MIN: int64_t = -9223372036854775808;
pub const INT_FAST8_MIN: int_fast8_t = -128;
pub const INT_FAST16_MIN: int_fast16_t = -9223372036854775808;
pub const INT_FAST32_MIN: int_fast32_t = -9223372036854775808;
pub const INT_FAST64_MIN: int_fast64_t = -9223372036854775808;
pub const INT_LEAST8_MIN: int_least8_t = -128;
pub const INT_LEAST16_MIN: int_least16_t = -32768;
pub const INT_LEAST32_MIN: int_least32_t = -2147483648;
pub const INT_LEAST64_MIN: int_least64_t = -9223372036854775808;
pub const INTPTR_MIN: intptr_t = -9223372036854775808;
pub const INTMAX_MIN: intmax_t = -9223372036854775808;
pub const INT8_MAX: int8_t = 127;
pub const INT16_MAX: int16_t = 32767;
pub const INT32_MAX: int32_t = 2147483647;
pub const INT64_MAX: int64_t = 9223372036854775807;
pub const INT_FAST8_MAX: int_fast8_t = 127;
pub const INT_FAST16_MAX: int_fast16_t = 9223372036854775807;
pub const INT_FAST32_MAX: int_fast32_t = 9223372036854775807;
pub const INT_FAST64_MAX: int_fast64_t = 9223372036854775807;
pub const INT_LEAST8_MAX: int_least8_t = 127;
pub const INT_LEAST16_MAX: int_least16_t = 32767;
pub const INT_LEAST32_MAX: int_least32_t = 2147483647;
pub const INT_LEAST64_MAX: int_least64_t = 9223372036854775807;
pub const INTPTR_MAX: intptr_t = 9223372036854775807;
pub const INTMAX_MAX: intmax_t = 9223372036854775807;
pub const UINT8_MAX: uint8_t = 255;
pub const UINT16_MAX: uint16_t = 65535;
pub const UINT32_MAX: uint32_t = 4294967295;
pub const UINT64_MAX: uint64_t = 18446744073709551615;
pub const UINT_FAST8_MAX: uint_fast8_t = 255;
pub const UINT_FAST16_MAX: uint_fast16_t = 18446744073709551615;
pub const UINT_FAST32_MAX: uint_fast32_t = 18446744073709551615;
pub const UINT_FAST64_MAX: uint_fast64_t = 18446744073709551615;
pub const UINT_LEAST8_MAX: uint_least8_t = 255;
pub const UINT_LEAST16_MAX: uint_least16_t = 65535;
pub const UINT_LEAST32_MAX: uint_least32_t = 4294967295;
pub const UINT_LEAST64_MAX: uint_least64_t = 18446744073709551615;
pub const UINTPTR_MAX: uintptr_t = 18446744073709551615;
pub const UINTMAX_MAX: uintmax_t = 18446744073709551615;