Fex-II/inc/sanity.h
2024-02-23 00:33:44 -06:00

18 lines
475 B
C

//
// Created by auric on 2/22/24.
//
#ifndef SANITY_H
#define SANITY_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
#define SANITY_LIB_FAIL 8 // 1000 - /uti/lib check failed
#define SANITY_HDR_FAIL 16 // 100000 - /uti/hdr check failed
int isSysSane();
#endif //SANITY_H