Uploaded currently available files

This commit is contained in:
WerWolv
2020-12-03 21:49:54 +01:00
parent 83b9faf43e
commit f2d85fd506
4 changed files with 193 additions and 0 deletions

14
includes/cstdint.hexpat Normal file
View File

@@ -0,0 +1,14 @@
using uint8_t = u8;
using uint16_t = u16;
using uint32_t = u32;
using uint64_t = u64;
using uint128_t = u128;
using int8_t = s8;
using int16_t = s16;
using int32_t = s32;
using int64_t = s64;
using int128_t = s128;
using size_t = u32;
using ssize_t = s32;