aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2024-09-22 19:34:43 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2024-09-22 19:34:43 +0330
commitf79290084948f3cf140395c270c07cf29ca58e8d (patch)
treed716526678782153f3617bbf78984b4c4ebed380 /src/utils
parentd2ab53c625d386a4fbc6a9d5a5eb29faab1b3f0c (diff)
Better errors
Added variables
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils/types.h b/src/utils/types.h
index df4d8b3..e2d8053 100644
--- a/src/utils/types.h
+++ b/src/utils/types.h
@@ -10,6 +10,8 @@ typedef enum bool : uint8_t { false = 0, true = 1 } bool;
#endif
#endif
+typedef const char *const SourceCode;
+
typedef struct SizedString {
char *str;
size_t size;