// // Created by auric on 2/22/24. // #ifndef SANITY_H #define SANITY_H #include #define SANITY_SUCCESS 0 // 0000 - All checks passed #define SANITY_CON_FAIL 1 // 0001 - /con check failed #define SANITY_EXE_FAIL 2 // 0010 - /exe check failed #define SANITY_UTI_FAIL 4 // 0100 - /uti check failed /*typedef struct { bool conEx; bool exeEx; bool utiEx; } SanityCheckResult;*/ const int isSysSane(); #endif //SANITY_H