i broke everything whaaat

This commit is contained in:
hugo LAMY
2025-03-16 21:08:33 +01:00
parent 6fa2df3b44
commit 54d9bea111
5 changed files with 182 additions and 96 deletions

View File

@@ -17,8 +17,16 @@
// text
#define SWITCH_CASE(ch) (((ch) >= 'A' && (ch) <= 'Z') || ((ch) >= 'a' && (ch) <= 'z') ? ((ch) ^ (1 << 5)) : (ch))
// boolean
#define TRUE 1
#define FALSE 0
// // boolean
// #define TRUE 1
// #define FALSE 0
//
// ENUM
//
typedef enum {
FALSE,
TRUE
} Boolean;
#endif // UTILS_H