src
|
#include "config.h"
Go to the source code of this file.
Typedefs | |
typedef int8_t | int_least8_t |
typedef int16_t | int_least16_t |
typedef int32_t | int_least32_t |
typedef int64_t | int_least64_t |
typedef uint8_t | uint_least8_t |
typedef uint16_t | uint_least16_t |
typedef uint32_t | uint_least32_t |
typedef uint64_t | uint_least64_t |
typedef int8_t | int_fast8_t |
typedef int16_t | int_fast16_t |
typedef int32_t | int_fast32_t |
typedef int64_t | int_fast64_t |
typedef uint8_t | uint_fast8_t |
typedef uint16_t | uint_fast16_t |
typedef uint32_t | uint_fast32_t |
typedef uint64_t | uint_fast64_t |
typedef int | intptr_t |
typedef unsigned int | uintptr_t |
typedef int64_t | intmax_t |
typedef uint64_t | uintmax_t |
#define INT16_C | ( | x | ) | x |
Definition at line 236 of file c99_stdint.h.
#define INT16_MAX 32767 |
Definition at line 161 of file c99_stdint.h.
#define INT16_MIN (-32768) |
Definition at line 160 of file c99_stdint.h.
#define INT32_C | ( | x | ) | x |
Definition at line 238 of file c99_stdint.h.
#define INT32_MAX 2147483647 |
Definition at line 163 of file c99_stdint.h.
#define INT32_MIN (-2147483648) |
Definition at line 162 of file c99_stdint.h.
#define INT64_C | ( | x | ) | x |
Definition at line 250 of file c99_stdint.h.
#define INT64_MAX 9223372036854775807 |
Definition at line 165 of file c99_stdint.h.
#define INT64_MIN (-9223372036854775808) |
Definition at line 164 of file c99_stdint.h.
#define INT8_C | ( | x | ) | x |
Definition at line 234 of file c99_stdint.h.
#define INT8_MAX 127 |
Definition at line 159 of file c99_stdint.h.
#define INT8_MIN (-128) |
Definition at line 158 of file c99_stdint.h.
#define INT_FAST16_MAX INT16_MAX |
Definition at line 189 of file c99_stdint.h.
#define INT_FAST16_MIN INT16_MIN |
Definition at line 188 of file c99_stdint.h.
#define INT_FAST32_MAX INT32_MAX |
Definition at line 191 of file c99_stdint.h.
#define INT_FAST32_MIN INT32_MIN |
Definition at line 190 of file c99_stdint.h.
#define INT_FAST64_MAX INT64_MAX |
Definition at line 193 of file c99_stdint.h.
#define INT_FAST64_MIN INT64_MIN |
Definition at line 192 of file c99_stdint.h.
#define INT_FAST8_MAX INT8_MAX |
Definition at line 187 of file c99_stdint.h.
#define INT_FAST8_MIN INT8_MIN |
Definition at line 186 of file c99_stdint.h.
#define INT_LEAST16_MAX INT16_MAX |
Definition at line 175 of file c99_stdint.h.
#define INT_LEAST16_MIN INT16_MIN |
Definition at line 174 of file c99_stdint.h.
#define INT_LEAST32_MAX INT32_MAX |
Definition at line 177 of file c99_stdint.h.
#define INT_LEAST32_MIN INT32_MIN |
Definition at line 176 of file c99_stdint.h.
#define INT_LEAST64_MAX INT64_MAX |
Definition at line 179 of file c99_stdint.h.
#define INT_LEAST64_MIN INT64_MIN |
Definition at line 178 of file c99_stdint.h.
#define INT_LEAST8_MAX INT8_MAX |
Definition at line 173 of file c99_stdint.h.
#define INT_LEAST8_MIN INT8_MIN |
Definition at line 172 of file c99_stdint.h.
#define INTMAX_C INT64_C |
Definition at line 255 of file c99_stdint.h.
#define INTMAX_MAX 9223372036854775807 |
Definition at line 206 of file c99_stdint.h.
#define INTMAX_MIN (-9223372036854775807) |
Definition at line 205 of file c99_stdint.h.
#define INTPTR_MAX 32767 |
Definition at line 201 of file c99_stdint.h.
#define INTPTR_MIN (-32767) |
Definition at line 200 of file c99_stdint.h.
#define UINT16_C | ( | x | ) | x##u |
Definition at line 237 of file c99_stdint.h.
#define UINT16_MAX 0xFFFF |
Definition at line 167 of file c99_stdint.h.
#define UINT32_C | ( | x | ) | x##u |
Definition at line 239 of file c99_stdint.h.
#define UINT32_MAX 0xFFFFffff |
Definition at line 168 of file c99_stdint.h.
#define UINT64_C | ( | x | ) | x##u |
Definition at line 251 of file c99_stdint.h.
#define UINT64_MAX 0xFFFFffffFFFFffff |
Definition at line 169 of file c99_stdint.h.
#define UINT8_C | ( | x | ) | x##u |
Definition at line 235 of file c99_stdint.h.
#define UINT8_MAX 0xFF |
Definition at line 166 of file c99_stdint.h.
#define UINT_FAST16_MAX UINT16_MAX |
Definition at line 195 of file c99_stdint.h.
#define UINT_FAST32_MAX UINT32_MAX |
Definition at line 196 of file c99_stdint.h.
#define UINT_FAST64_MAX UINT64_MAX |
Definition at line 197 of file c99_stdint.h.
#define UINT_FAST8_MAX UINT8_MAX |
Definition at line 194 of file c99_stdint.h.
#define UINT_LEAST16_MAX UINT16_MAX |
Definition at line 181 of file c99_stdint.h.
#define UINT_LEAST32_MAX UINT32_MAX |
Definition at line 182 of file c99_stdint.h.
#define UINT_LEAST64_MAX UINT64_MAX |
Definition at line 183 of file c99_stdint.h.
#define UINT_LEAST8_MAX UINT8_MAX |
Definition at line 180 of file c99_stdint.h.
#define UINTMAX_C UINT64_C |
Definition at line 256 of file c99_stdint.h.
#define UINTMAX_MAX 0xFFFFffffFFFFffff |
Definition at line 207 of file c99_stdint.h.
#define UINTPTR_MAX 0xFFFF |
Definition at line 202 of file c99_stdint.h.
typedef int16_t int_fast16_t |
Definition at line 134 of file c99_stdint.h.
typedef int32_t int_fast32_t |
Definition at line 135 of file c99_stdint.h.
typedef int64_t int_fast64_t |
Definition at line 136 of file c99_stdint.h.
typedef int8_t int_fast8_t |
Definition at line 133 of file c99_stdint.h.
typedef int16_t int_least16_t |
Definition at line 124 of file c99_stdint.h.
typedef int32_t int_least32_t |
Definition at line 125 of file c99_stdint.h.
typedef int64_t int_least64_t |
Definition at line 126 of file c99_stdint.h.
typedef int8_t int_least8_t |
Definition at line 123 of file c99_stdint.h.
typedef int64_t intmax_t |
Definition at line 152 of file c99_stdint.h.
typedef int intptr_t |
Definition at line 147 of file c99_stdint.h.
typedef uint16_t uint_fast16_t |
Definition at line 138 of file c99_stdint.h.
typedef uint32_t uint_fast32_t |
Definition at line 139 of file c99_stdint.h.
typedef uint64_t uint_fast64_t |
Definition at line 140 of file c99_stdint.h.
typedef uint8_t uint_fast8_t |
Definition at line 137 of file c99_stdint.h.
typedef uint16_t uint_least16_t |
Definition at line 128 of file c99_stdint.h.
typedef uint32_t uint_least32_t |
Definition at line 129 of file c99_stdint.h.
typedef uint64_t uint_least64_t |
Definition at line 130 of file c99_stdint.h.
typedef uint8_t uint_least8_t |
Definition at line 127 of file c99_stdint.h.
typedef uint64_t uintmax_t |
Definition at line 153 of file c99_stdint.h.
typedef unsigned int uintptr_t |
Definition at line 148 of file c99_stdint.h.