Add 'external/ircolib/' from commit 'ce3cd726c8df8388d554abf8bb55d55020eb4450'

git-subtree-dir: external/ircolib
git-subtree-mainline: e64eb40b38
git-subtree-split: ce3cd726c8
This commit is contained in:
2026-03-23 12:16:56 +01:00
5 changed files with 315 additions and 0 deletions

13
external/ircolib/types.hpp vendored Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include <cstdint>
namespace ircolib {
using u8 = uint8_t;
using u16 = uint16_t;
using u32 = uint32_t;
using u64 = uint64_t;
using s8 = int8_t;
using s16 = int16_t;
using s32 = int32_t;
using s64 = int64_t;
}