MentOS  0.8.0
The Mentoring Operating System
stdint.h
Go to the documentation of this file.
1 
6 #pragma once
7 
9 typedef int int64_t;
10 
12 typedef unsigned int uint64_t;
13 
15 typedef int int32_t;
16 
18 typedef unsigned int uint32_t;
19 
21 typedef short int16_t;
22 
24 typedef unsigned short uint16_t;
25 
27 typedef char int8_t;
28 
30 typedef unsigned char uint8_t;
31 
33 typedef signed intptr_t;
34 
36 typedef unsigned uintptr_t;
unsigned uintptr_t
Define the unsigned 32-bit pointer.
Definition: stdint.h:36
unsigned short uint16_t
Define the unsigned 16-bit integer.
Definition: stdint.h:24
int int32_t
Define the signed 32-bit integer.
Definition: stdint.h:15
unsigned int uint64_t
Define the unsigned 64-bit integer.
Definition: stdint.h:12
unsigned int uint32_t
Define the unsigned 32-bit integer.
Definition: stdint.h:18
int int64_t
Define the signed 64-bit integer.
Definition: stdint.h:9
signed intptr_t
Define the signed 32-bit pointer.
Definition: stdint.h:33
short int16_t
Define the signed 16-bit integer.
Definition: stdint.h:21
unsigned char uint8_t
Define the unsigned 8-bit integer.
Definition: stdint.h:30
char int8_t
Define the signed 8-bit integer.
Definition: stdint.h:27