From c409b8aaf6b6f63bd68a3356e146ab80b2ec8c4b Mon Sep 17 00:00:00 2001 From: A404M Date: Wed, 25 Sep 2024 19:47:29 +0330 Subject: fixed multiple variable definition bug tried to implement import --- src/utils/types.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/utils/types.h') 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 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; -- cgit v1.2.3