MaybeBool enum... might not be a good idea

This commit is contained in:
Tenari
2026-04-19 21:01:32 -05:00
parent 842a1f8718
commit 91c2695cf4
+6
View File
@@ -287,6 +287,12 @@ typedef u32 b32;
#define true 1
#define false 0
typedef enum MaybeBool {
MaybeBoolNull,
MaybeBoolFalse,
MaybeBoolTrue,
} MaybeBool;
// Structs
typedef struct Resulti64 {
bool success;