WHY2/include/flags.h
2022-05-04 18:42:30 +02:00

31 lines
584 B
C

#ifndef WHY2_FLAGS_H
#define WHY2_FLAGS_H
//CONSTS
#define ENCRYPTION_SEPARATOR '.'
#define ENCRYPTION_SEPARATOR_STRING "."
#define INVALID_KEY 1
#define VERSION "v3.1"
#define VERSIONS_URL "https://raw.githubusercontent.com/ENGO150/WHY2/stable/versions.json"
#define VERSIONS_NAME "versions.json"
//VARIABLES
static int keyLength = 50;
static int skipCheck = 0;
static int noOutput = 0;
//FUNCTIONS
int getSkipCheck();
void setSkipCheck(int skipCheckNew);
int getKeyLength();
void setKeyLength(int keyLengthNew);
int getNoOutput();
void setNoOutput(int noOutputNew);
#endif