Clang Project

clang_source_code/test/Modules/Inputs/libc-libcxx/sysroot/usr/include/stdint.h
1typedef char           int_least8_t;
2typedef short         int_least16_t;
3typedef int         int_least32_t;
4typedef long long int         int_least64_t;
5typedef unsigned char         uint_least8_t;
6typedef unsigned short       uint_least16_t;
7typedef unsigned int       uint_least32_t;
8typedef unsigned long long       uint_least64_t;
9
10typedef char           int_fast8_t;
11typedef short         int_fast16_t;
12typedef int         int_fast32_t;
13typedef long long int         int_fast64_t;
14typedef unsigned char         uint_fast8_t;
15typedef unsigned short       uint_fast16_t;
16typedef unsigned int       uint_fast32_t;
17typedef unsigned long long       uint_fast64_t;
18
19typedef int * intptr_t;
20typedef unsigned int * uintptr_t;
21typedef int intmax_t;
22typedef unsigned int uintmax_t;
23