stdint.h (404B)
1 #pragma once 2 3 #ifndef _STDINT_H 4 #define _STDINT_H 5 6 typedef unsigned char uint8_t; 7 typedef unsigned short uint16_t; 8 typedef unsigned int uint32_t; 9 typedef unsigned long long uint64_t; 10 11 // other essential types 12 13 typedef unsigned long size_t; //unsigned size_t to adjust to (32/64) bit systems and memory operations 14 typedef long ssize_t; // signed size_t -> ssize_t 15 typedef unsigned long uintptr_t; 16 17 #endif