1570af302Sopenharmony_citypedef int32_t int_fast16_t; 2570af302Sopenharmony_citypedef int32_t int_fast32_t; 3570af302Sopenharmony_citypedef uint32_t uint_fast16_t; 4570af302Sopenharmony_citypedef uint32_t uint_fast32_t; 5570af302Sopenharmony_ci 6570af302Sopenharmony_ci#define INT_FAST16_MIN INT32_MIN 7570af302Sopenharmony_ci#define INT_FAST32_MIN INT32_MIN 8570af302Sopenharmony_ci 9570af302Sopenharmony_ci#define INT_FAST16_MAX INT32_MAX 10570af302Sopenharmony_ci#define INT_FAST32_MAX INT32_MAX 11570af302Sopenharmony_ci 12570af302Sopenharmony_ci#define UINT_FAST16_MAX UINT32_MAX 13570af302Sopenharmony_ci#define UINT_FAST32_MAX UINT32_MAX 14570af302Sopenharmony_ci 15570af302Sopenharmony_ci#define INTPTR_MIN INT32_MIN 16570af302Sopenharmony_ci#define INTPTR_MAX INT32_MAX 17570af302Sopenharmony_ci#define UINTPTR_MAX UINT32_MAX 18570af302Sopenharmony_ci#define PTRDIFF_MIN INT32_MIN 19570af302Sopenharmony_ci#define PTRDIFF_MAX INT32_MAX 20570af302Sopenharmony_ci#define SIZE_MAX UINT32_MAX 21