-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstdint.h
More file actions
33 lines (27 loc) · 804 Bytes
/
stdint.h
File metadata and controls
33 lines (27 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* stdint.h */
#ifndef STDINT_H
#define STDINT_H
typedef signed char int8_t;
typedef signed short int16_t;
typedef signed int int32_t;
typedef signed long long int64_t;
typedef signed long long intmax_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long uint64_t;
typedef unsigned long long uintmax_t;
#if defined (_WIN64) || defined (LLP64)
typedef int64_t intptr_t;
typedef uint64_t uintptr_t;
#else
typedef signed long intptr_t;
typedef unsigned long uintptr_t;
#endif
typedef int16_t int_least16_t;
typedef int32_t int_least32_t;
typedef int64_t int_least64_t;
typedef uint16_t uint_least16_t;
typedef uint32_t uint_least32_t;
typedef uint64_t uint_least64_t;
#endif