fix: clangd

This commit is contained in:
karina
2026-04-23 06:49:40 +04:00
parent bfa84040b8
commit cf142ba78e
6 changed files with 53 additions and 13 deletions
+18
View File
@@ -0,0 +1,18 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2026 0xKarinyash
#pragma once
typedef unsigned char UInt8;
typedef unsigned short UInt16;
typedef unsigned int UInt32;
typedef unsigned long long UInt64;
typedef signed char Int8;
typedef signed short Int16;
typedef signed int Int32;
typedef signed long long Int64;
typedef UInt64 Size;