UnnamedOS
stdint.h
1 #ifndef STDINT_H
2 #define STDINT_H
3 
4 typedef unsigned long long uint64_t;
5 typedef unsigned int uint32_t;
6 typedef unsigned short uint16_t;
7 typedef unsigned char uint8_t;
8 
9 typedef signed long long int64_t;
10 typedef signed int int32_t;
11 typedef signed short int16_t;
12 typedef signed char int8_t;
13 
14 typedef uint32_t uintptr_t;
15 typedef uint32_t size_t;
16 
17 typedef union word {
18  unsigned short w;
19  unsigned char b[2];
20 } word_t;
21 
22 typedef union dword {
23  unsigned int dw;
24  word_t b[2];
25 } dword_t;
26 
27 #endif
Definition: stdint.h:17
Definition: stdint.h:22