12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #pragma once
- #include <sys/cdefs.h>
- __BEGIN_DECLS
- typedef __UINT64_TYPE__ uint64_t;
- typedef __UINT32_TYPE__ uint32_t;
- typedef __UINT16_TYPE__ uint16_t;
- typedef __UINT8_TYPE__ uint8_t;
- typedef __INT64_TYPE__ int64_t;
- typedef __INT32_TYPE__ int32_t;
- typedef __INT16_TYPE__ int16_t;
- typedef __INT8_TYPE__ int8_t;
- typedef __UINT_FAST8_TYPE__ uint_fast8_t;
- typedef __UINT_FAST16_TYPE__ uint_fast16_t;
- typedef __UINT_FAST32_TYPE__ uint_fast32_t;
- typedef __UINT_FAST64_TYPE__ uint_fast64_t;
- typedef __INT_FAST8_TYPE__ int_fast8_t;
- typedef __INT_FAST16_TYPE__ int_fast16_t;
- typedef __INT_FAST32_TYPE__ int_fast32_t;
- typedef __INT_FAST64_TYPE__ int_fast64_t;
- #define __int8_t_defined 1
- #define __uint8_t_defined 1
- #define __int16_t_defined 1
- #define __uint16_t_defined 1
- #define __int32_t_defined 1
- #define __uint32_t_defined 1
- #define __int64_t_defined 1
- #define __uint64_t_defined 1
- typedef __PTRDIFF_TYPE__ uintptr_t;
- typedef __PTRDIFF_TYPE__ intptr_t;
- #define INTPTR_MAX PTRDIFF_MAX
- #define INTPTR_MIN PTRDIFF_MIN
- #define UINTPTR_MAX __UINTPTR_MAX__
- typedef __UINTMAX_TYPE__ uintmax_t;
- #define UINTMAX_MAX __UINTMAX_MAX__
- #define UINTMAX_MIN __UINTMAX_MIN__
- typedef __INTMAX_TYPE__ intmax_t;
- #define INTMAX_MAX __INTMAX_MAX__
- #define INTMAX_MIN (-INTMAX_MAX - 1)
- #define INT8_MIN (-128)
- #define INT16_MIN (-32767-1)
- #define INT32_MIN (-2147483647-1)
- #define INT8_MAX (127)
- #define INT16_MAX (32767)
- #define INT32_MAX (2147483647)
- #define UINT8_MAX (255)
- #define UINT16_MAX (65535)
- #define UINT32_MAX (4294967295U)
- #define INT64_C(x) x##LL
- #define UINT64_C(x) x##ULL
- __END_DECLS
|