aboutsummaryrefslogtreecommitdiff
path: root/type_alias.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-07-22 15:28:30 +0800
committerMistivia <i@mistivia.com>2025-07-22 15:28:45 +0800
commit999fcf0f7655c03265c222cc67617f0f510979bf (patch)
treedd51680ffda411239e37460c834a996dc934dc63 /type_alias.h
parenta8764a20f355fd8fb7b03978d754d1cbd48d0a88 (diff)
change dir structure
Diffstat (limited to 'type_alias.h')
-rw-r--r--type_alias.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/type_alias.h b/type_alias.h
new file mode 100644
index 0000000..8f818ed
--- /dev/null
+++ b/type_alias.h
@@ -0,0 +1,19 @@
+#ifndef ALGDS_TYPE_ALIAS_H_
+#define ALGDS_TYPE_ALIAS_H_
+
+#include <stdint.h>
+#include <stdbool.h>
+
+typedef bool Bool;
+typedef int32_t Int;
+typedef int64_t Long;
+typedef uint32_t UInt;
+typedef uint64_t ULong;
+typedef char Char;
+typedef float Float;
+typedef double Double;
+typedef const char *String;
+typedef const void *VoidPtr;
+
+
+#endif