Download
cyberslak
/lightsout
/stdint.h
(View History)
cyberslak Add LICENSE information | Latest amendment: 22 on 2025-03-15 |
1 | // SPDX-License-Identifier: MIT |
2 | |
3 | #pragma once |
4 | |
5 | typedef signed long ssize_t; |
6 | typedef unsigned long size_t; |
7 | |
8 | typedef unsigned char uint8_t; |
9 | typedef unsigned short uint16_t; |
10 | typedef unsigned long uint32_t; |
11 | |
12 | typedef unsigned char u8; |
13 | typedef unsigned short u16; |
14 | typedef unsigned long u32; |
15 | |
16 | typedef Boolean bool; |