diff options
Diffstat (limited to 'src/utils/types.h')
-rw-r--r-- | src/utils/types.h | 3 |
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; |