aboutsummaryrefslogtreecommitdiff
path: root/src/utils/types.h
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2024-09-25 19:47:29 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2024-09-25 19:47:29 +0330
commitc409b8aaf6b6f63bd68a3356e146ab80b2ec8c4b (patch)
tree65ea5801fd910fc6bcff3f2e8f06b5fd7d249c78 /src/utils/types.h
parentf79290084948f3cf140395c270c07cf29ca58e8d (diff)
fixed multiple variable definition bug
tried to implement import
Diffstat (limited to 'src/utils/types.h')
-rw-r--r--src/utils/types.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/utils/types.h b/src/utils/types.h
index e2d8053..b75d64d 100644
--- a/src/utils/types.h
+++ b/src/utils/types.h
@@ -5,13 +5,10 @@
#ifndef __cplusplus
#if (__STDC_VERSION__ < 202000L)
- #include <stdint.h>
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;