13 element imaxdiv_t intmax_t rem
14 element imaxdiv_t intmax_t quot
16 function intmax_t imaxabs (intmax_t)
17 function imaxdiv_t imaxdiv (intmax_t, intmax_t)
18 function intmax_t strtoimax (const char*, char**, int)
19 function uintmax_t strtoumax (const char*, char**, int)
20 function intmax_t wcstoimax (const wchar_t*, wchar_t**, int)
21 function uintmax_t wcstoumax (const wchar_t*, wchar_t**, int)
27 // Now the content of <stdint.h>. Update this whenever <stdint.h> changed.
61 constant INT8_MIN == -128
62 constant INT8_MAX == 127
63 constant INT16_MIN == -32768
64 constant INT16_MAX == 32767
65 constant INT32_MIN == -2147483647-1
66 constant INT32_MAX == 2147483647
67 constant INT64_MIN == -9223372036854775807LL-1
68 constant INT64_MAX == 9223372036854775807LL
70 constant UINT8_MAX == 255
71 constant UINT16_MAX == 65535
72 constant UINT32_MAX == 4294967295U
73 constant UINT64_MAX == 18446744073709551615ULL
75 constant INT_LEAST8_MIN <= -128
76 constant INT_LEAST8_MAX >= 127
77 constant INT_LEAST16_MIN <= -32768
78 constant INT_LEAST16_MAX >= 32767
79 constant INT_LEAST32_MIN <= -2147483647-1
80 constant INT_LEAST32_MAX >= 2147483647
81 constant INT_LEAST64_MIN <= -9223372036854775807LL-1
82 constant INT_LEAST64_MAX >= 9223372036854775807LL
84 constant UINT_LEAST8_MAX >= 255
85 constant UINT_LEAST16_MAX >= 65535
86 constant UINT_LEAST32_MAX >= 4294967295U
87 constant UINT_LEAST64_MAX >= 18446744073709551615ULL
89 constant INT_FAST8_MIN <= -128
90 constant INT_FAST8_MAX >= 127
91 constant INT_FAST16_MIN <= -32768
92 constant INT_FAST16_MAX >= 32767
93 constant INT_FAST32_MIN <= -2147483647-1
94 constant INT_FAST32_MAX >= 2147483647
95 constant INT_FAST64_MIN <= -9223372036854775807LL-1
96 constant INT_FAST64_MAX >= 9223372036854775807LL
98 constant UINT_FAST8_MAX >= 255
99 constant UINT_FAST16_MAX >= 65535
100 constant UINT_FAST32_MAX >= 4294967295U
101 constant UINT_FAST64_MAX >= 18446744073709551615ULL
103 constant INTPTR_MIN <= -32768
104 constant INTPTR_MAX >= 32767
106 constant UINTPTR_MAX >= 65535
108 constant INTMAX_MIN <= -9223372036854775807LL-1
109 constant INTMAX_MAX >= 9223372036854775807LL
111 constant UINTMAX_MAX >= 18446744073709551615ULL
113 constant PTRDIFF_MIN <= -65535
114 constant PTRDIFF_MAX >= 65535
116 constant SIG_ATOMIC_MIN <= -127
117 constant SIG_ATOMIC_MAX >= 127
119 constant SIZE_MAX >= 65535
121 constant WCHAR_MIN <= -127
122 constant WCHAR_MAX >= 127
124 constant WINT_MIN <= -127
125 constant WINT_MAX >= 127
138 // The following expressions are not entirely correct but the current
139 // poorfnmatch implementation doesn't grok the right form.