rosos/stdint.h
2024-01-09 20:33:14 -06:00

13 lines
266 B
C

#pragma once
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned long uint32_t;
typedef unsigned long long uint64_t;
typedef uint64_t size_t;
typedef char int8_t;
typedef short int16_t;
typedef long int32_t;
typedef long long int64_t;