Fex-II/inc/sanity.h
2024-02-22 23:34:30 -06:00

24 lines
466 B
C

//
// Created by auric on 2/22/24.
//
#ifndef SANITY_H
#define SANITY_H
#include <stdbool.h>
#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