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

10 lines
177 B
C

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